class ProfileInfoBlock < Block def self.description _('Profile information') end def help _('Basic information about %{user}: how long %{user} is part of %{env} and useful links.') % { :user => self.owner.name(), :env => self.owner.environment.name() } end def content(args={}) block = self lambda do |_| render :file => 'blocks/profile_info', :locals => { :block => block } end end def cacheable? false end end