|
<h1>Listing Agents</h1>
<table class="table table-bordered">
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>Date Registered</th>
<th>Sign in count</th>
</tr>
</thead>
<tbody>
<% @users.each do |user| %>
<tr>
<td><%= link_to user.username, agent_profile_path(user) %></td>
<td><%= user.email %></td>
<td><%= user.created_at %></td>
<td><%= user.sign_in_count%>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Mission', new_mission_path %>
|