<div class="content centered">
  <h2 class="top">Users</h2>
  <div class="userSearch">
    <form class="form-search">
      <div class="input-append">
        <input type="text" class="span2 search-query">
        <button type="submit" class="btn">Search</button>
      </div>
    </form>
  </div>
  <div class="tableStatus" >
    <p class="currentSearchTerm muted">Currently displaying all users</p>
    <p class="currentSearchMetrics muted">Showing 50 of 4211 users</p>
  </div>
  <table class="table">
    <thead>
      <tr>
        <th>Username</th>
        <th>Last seen</th>
        <th>Signup date</th>
        <th>State</th>
        <th>Password</th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      {{#each users}}
      <tr>
        <td>{{name}}</td>
        <td>{{lastLogin}}</td>
        <td class="timeago" title="{{signedUpAt}}">{{signedUpAt}}</td>
        <td>{{state}}</td>
        <td>resend / new</td>
        <td>edit / delete</td>
      </tr>
      {{/each}}
    </tbody>
  </table>
  <div class="tableStatus">
    <p class="currentSearchTerm muted">Currently displaying all users</p>
    <p class="currentSearchMetrics muted">Showing 50 of 4211 users</p>
  </div>
</div>
