home.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {{ define "home"}}
  2. {{template "header"}}
  3. <div class="section">
  4. <div class="container">
  5. <a class="button is-primary" href="/form"><strong>Agregar</strong></a>
  6. <table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth">
  7. <thead>
  8. <tr class="is-link">
  9. <th>ID</th>
  10. <td>Nombre</td>
  11. <td>Apellidos</td>
  12. <td>Economia</td>
  13. <td>Cultura</td>
  14. <td>Discapacidad</td>
  15. <td>Acciones</td>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {{range.}}
  20. <tr>
  21. <th>{{.Id}}</th>
  22. <td>{{.Nombre}}</td>
  23. <td>{{.Apellido}}</td>
  24. <td>{{.Economia}}</td>
  25. <td>{{.Pertenecia}}</td>
  26. <td>{{.Discapacidad}}</td>
  27. <td>
  28. <a class="button is-warning" href="/editar?id={{.Id}}">Editar</a>
  29. <a class="button is-danger" href="/borrar?id={{.Id}}">Borrar</a></td>
  30. </tr>
  31. {{end}}
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>
  36. {{ template "footer"}}
  37. {{end}}