-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.hbs
More file actions
26 lines (26 loc) · 773 Bytes
/
index.hbs
File metadata and controls
26 lines (26 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="container">
<div class="row">
<br>
<a href="/persona/nuevo" class="btn btn-primary">Nuevo</a>
<table class="table table-striped">
<thead>
<tr>
<th>Nombres</th>
<th>Apellidos</th>
<th>Edad</th>
<th colspan="2">Operación</th>
<th>prueba</th>
</tr>
</thead>
{{#each personas}}
<tr>
<td>{{this.nombres}}</td>
<td>{{this.apellidos}}</td>
<td>{{this.edad}}</td>
<td><a href="/persona/modificar/{{this._id}}">Modificar</a></td>
<td><a href="/persona/eliminar/{{this._id}}">Eliminar</a></td>
</tr>
{{/each}}
</table>
</div>
</div>