index.mustache 828 B

12345678910111213141516171819202122232425262728
  1. <a href='auth/form' >Adicionar </a>
  2. <div class="table-responsive">
  3. <table class='table'>
  4. <thead>
  5. <tr>
  6. <th>Id</th>
  7. <th>Value</th>
  8. <th>Description</th>
  9. <th>Actions</th>
  10. </tr>
  11. </thead>
  12. {{#list}}
  13. <tr class="table-dark" data-id='{{id}}'>
  14. <td>{{id}}</td>
  15. <td>{{value}}</td>
  16. <td>{{description}}</td>
  17. <td>
  18. <a href="auth/edit"> <i class="fa fa-pencil"></i></a>
  19. <a href="auth/purge"> <i class="fa fa-fire"></i></a>
  20. <a href="auth/"> <i class="fa fa-plus"></i></a>
  21. <a href="auth/destroy"> <i class="fa fa-trash-o"></i></a>
  22. </td>
  23. </tr>
  24. {{/list}}
  25. </table>
  26. </div>