diff options
| author | Kir | 2011-12-14 19:00:37 +0400 |
|---|---|---|
| committer | Kir | 2011-12-14 19:00:37 +0400 |
| commit | 35e185b02d869bd69cd2bec65d4058e967f97aa5 (patch) | |
| tree | 29a96c901c96aa84a31894abab1dd641239bec7e /app/views | |
| parent | 50a241e922ff4b58b3fc3e52162f4e199e1fae3d (diff) | |
| download | inboxes-35e185b02d869bd69cd2bec65d4058e967f97aa5.tar.bz2 | |
Refactoring
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/inboxes/discussions/index.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/inboxes/discussions/index.html.haml b/app/views/inboxes/discussions/index.html.haml index 3d47a59..433e929 100644 --- a/app/views/inboxes/discussions/index.html.haml +++ b/app/views/inboxes/discussions/index.html.haml @@ -11,7 +11,10 @@ %td = link_to discussion.users.collect{|u| u[Inboxes::config.user_name]}.join(', '), discussion %td - = discussion.unread_for?(current_user) ? (discussion.count_unread_mess(current_user).to_s + ' сообщение') : "No" + - if discussion.unread_for?(current_user) + = pluralize(discussion.unread_messages_count_for(current_user), "message") + - else + No unread messages %p = link_to "Create new", new_discussion_path |
