woese/guara-crm

View on GitHub
app/views/users/_user.html.erb

Summary

Maintainability
Test Coverage
<li>
  <%= gravatar_for user, size: 52 %>
  <%= link_to user.name, user_path(user) %>
  <% if current_user.admin? && current_user.email!=user.email %>
    | <%= link_to t("helpers.forms.disable"), user, method: :delete,
                                  data: { confirm: t('helpers.forms.areyousure') } %>
  <% end %>
</li>