summaryrefslogtreecommitdiff
path: root/app/views/users/index.html.erb
diff options
context:
space:
mode:
authorTomer Kimia <tkimia@purdue.edu>2014-03-03 19:51:30 -0500
committerTomer Kimia <tkimia@purdue.edu>2014-03-03 19:51:30 -0500
commitb8c14b654255376d79fae55e139a968930be4569 (patch)
tree9197a97b1392801ec138327b00e9bd31c050ab77 /app/views/users/index.html.erb
parent254f8b72b2d92787d2e1f9e7589935b2c0dae66d (diff)
fixed users table
Diffstat (limited to 'app/views/users/index.html.erb')
-rw-r--r--app/views/users/index.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb
index 8b9056b..10f19f4 100644
--- a/app/views/users/index.html.erb
+++ b/app/views/users/index.html.erb
@@ -1,6 +1,6 @@
<h1>Listing users</h1>
-<table>
+<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
@@ -15,7 +15,7 @@
<% @users.each do |user| %>
<tr>
<td><%= user.name %></td>
- <td><%= user.pw_hash %></td>
+ <td> ******* </td>
<td><%= link_to 'Show', user %></td>
<td><%= link_to 'Edit', edit_user_path(user) %></td>
<td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td>