summaryrefslogtreecommitdiff
path: root/app/views/users/index.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-03 23:52:39 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-03 23:52:39 -0500
commitacb5be88f394b126c3fba48ceb9798403c5afae1 (patch)
treed28ba5b07bc91cb92f02c9e490bff5501859e6fd /app/views/users/index.html.erb
parent9f246b9ec386ccb5e6665408d050cf71fc336283 (diff)
parentec9b2d4f40bd6a878aeca3ca32ba2aafe3836da5 (diff)
Merge branch 'master' of github.com:LukeShu/leager
Conflicts: app/controllers/users_controller.rb app/views/users/index.html.erb
Diffstat (limited to 'app/views/users/index.html.erb')
-rw-r--r--app/views/users/index.html.erb7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb
index 3692112..d7b46da 100644
--- a/app/views/users/index.html.erb
+++ b/app/views/users/index.html.erb
@@ -1,22 +1,25 @@
<h1>Listing users</h1>
-<table>
+<table class="table table-hover">
<thead>
<tr>
+ <th>Username</th>
<th>Name</th>
<th>Email</th>
<th>User name</th>
<th></th>
<th></th>
<th></th>
+ <th></th>
</tr>
</thead>
<tbody>
<% @users.each do |user| %>
<tr>
+ <td><%= link_to("#{user.user_name}", user, nil) %></td>
<td><%= user.name %></td>
- <td><%= user.email %></td>
+ <td> ******* </td>
<td><%= user.user_name %></td>
<td><%= link_to 'Show', user %></td>
<td><%= link_to 'Edit', edit_user_path(user) %></td>