profile_info_block.rb 233 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 class ProfileInfoBlock < Block def self.description _('Profile information block') end def content user = owner lambda do render :file => 'account/user_info', :locals => { :user => user } end end end