<%- include ../_template.ejs %>

<section>
<header>
  <h3> Users </h3>
</header>

<table class='table table-striped table-bordered table-condensed'>
  <thead>
    <tr>
      <th>Login</th>
      <th>Name</th>
      <th>Actions</th>
    </tr>
  </thead>

  <tbody>
  <% for (var i in users) { %>
    <tr>
       <td> <%= users[i].login %> </td>
       <td> <%= users[i].name %>  </td>
       
       <td> 

                <a class='btn btn-warning btn-mini' href="/config/users/<%= users[i].id %>/edit"> 
                  <i class='icon-edit icon-white'></i> Edit 
                </a>

       </td> 
    </tr>
  <%  }; %>
  </tbody>
</table>

<footer>
  <!-- <nav> <a href="/config/users/new"> New User </a> </nav> -->
</footer>
<section>


   </div>
  </div>
 </div>

</body>

