Skip to content

Commit

Permalink
added app/views/users/index.html.erb and now tests will pass - thanks…
Browse files Browse the repository at this point in the history
… grempe
  • Loading branch information
Jerry Richardson authored and Jerry Richardson committed Feb 16, 2009
1 parent d668cb8 commit 64db526
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/views/users/index.html.erb
@@ -0,0 +1,13 @@
<table>
<tr>
<th>Email</th>
<th>Confirmed Email?</th>
<tr>
<% @users.each do |user| %>
<tr>
<td><%= link_to user.email, user_path(user) %></td>
<td><%= user.email_confirmed %></td>
</tr>
<% end %>
</table>

0 comments on commit 64db526

Please sign in to comment.