fixes from comments
This commit is contained in:
parent
d7c7d878f2
commit
5a1dae866a
7 changed files with 23 additions and 34 deletions
|
|
@ -10,9 +10,9 @@
|
|||
- recent_users.each_with_index do |user, index|
|
||||
%tbody
|
||||
%tr
|
||||
%td #{index}
|
||||
%td= link_to "#{user.email}", admin_user_path(user.id)
|
||||
%td #{user.created_at.strftime('%m/%d/%Y')}
|
||||
%td= index + 1
|
||||
%td= link_to user.email, admin_user_path(user.id)
|
||||
%td= user.created_at.strftime('%m/%d/%Y')
|
||||
%td
|
||||
- if user.confirmed?
|
||||
%span.label.label-success Confirmed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue