* Needed to rewrite the signature of all the method 'content' of all
blocks.
Pair-programmed with: Rodrigo Souto <rodrigo@colivre.coop.br>
(ActionItem1549)
class LoginBlock < Block
def self.description
_('Login/logout')
end
def help
_('This block presents a login/logout block.')
end
def content(args={})
lambda do
render :file => 'blocks/login_block'
end
end
def cacheable?
false
end
end