diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb index 17f116df..fc60a6f2 100644 --- a/app/views/users/index.html.erb +++ b/app/views/users/index.html.erb @@ -1,6 +1,6 @@
<%= t('users.total_users_count', :count => "#{@total_users}") %>
+<%= t('users.total_users_count', :count => "#{@total_users}").html_safe %>
| <%= h user.contexts.size %> | <%= h user.projects.size %> | <%= h user.notes.size %> | -<%= !user.is_admin? ? remote_delete_user(user) : " " %> | +<%= !user.is_admin? ? remote_delete_user(user) : " ".html_safe %> |
<%= link_to t('users.signup_new_user'), signup_path %>
\ No newline at end of file +<%= link_to t('users.signup_new_user'), signup_path %>