diff options
| author | mo khan <mo@mokhan.ca> | 2014-09-20 20:13:42 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-09-20 20:13:42 -0600 |
| commit | e7fcf236ffc142d9bf80a00d018c76efbd1f7d2a (patch) | |
| tree | 5a9c6ca9d5cfd20344cf9395b766582d0d95e30b | |
| parent | 1273a04ea62e4e1a3c5b74ba02a506d3e366a825 (diff) | |
remove old devise fields from admin section.
| -rw-r--r-- | app/views/admin/users/_index.html.erb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/views/admin/users/_index.html.erb b/app/views/admin/users/_index.html.erb index 2efd451e..081a8104 100644 --- a/app/views/admin/users/_index.html.erb +++ b/app/views/admin/users/_index.html.erb @@ -5,8 +5,6 @@ <td>name</td> <td>email</td> <td>location</td> - <td>last sign in</td> - <td>current sign in</td> <td>created at</td> </tr> </thead> @@ -17,8 +15,6 @@ <td><%= link_to user.name, admin_user_path(user) %></td> <td><%= mail_to user.email %></td> <td><%= user.latitude %>, <%= user.longitude %></td> - <td><%= time_ago_in_words(user.last_sign_in_at) %></td> - <td><%= time_ago_in_words(user.current_sign_in_at) %></td> <td><%= time_ago_in_words(user.created_at) %></td> </tr> <% end %> |
