This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/app/views/log/_news_log_entry.html.haml
2009-09-06 12:36:04 -03:00

7 lines
338 B
Plaintext

= "criou " if entry.kind_of?(NewsCreateLogEntry)
= "editou " if entry.kind_of?(NewsEditLogEntry)
= "excluiu " if entry.kind_of?(NewsDeleteLogEntry)
= "restaurou " if entry.kind_of?(NewsRestoreLogEntry)
= "a notícia " + link_to(h(entry.news.title), course_news_instance_url(entry.course, entry.news, :version => entry.version))