Hello, I'm trying to build a table, but specifically I have a problem with a row, in which I need this piece:
<td ><i class='glyphicon glyphicon-book' tile='Permiso de Lectura'>primero</i></td>
<td ><i class='glyphicon glyphicon-pencil' tile='Permiso de Escritura'>segundo</i></td>
<td ><i class='glyphicon glyphicon-trash' tile='Permiso de Eliminación'>tercero</i></td>
I need this to be generated dynamically, in my case with this ng-repeat="usu in aTipoUsuarios" would be generated 2 times just what I need.
<table border='1'>
<tr>
<th rowspan="3">Tipo de Contenido</th>
<th colspan="{{aTipoUsuarios.length * 3}}">
Tipo de Usuarios
</th>
</tr>
<tr>
<td ng-repeat="usu in aTipoUsuarios" colspan="3">
{{usu}}
</td>
</tr>
<tr>
<!--Aqui necesito usar el ng-repeat ng-repeat="usu in aTipoUsuarios"
para que se muestre esto en mi caso 2 veces-->
<td ><i class='glyphicon glyphicon-book' tile='Permiso de Lectura'>primero</i></td>
<td ><i class='glyphicon glyphicon-pencil' tile='Permiso de Escritura'>segundo</i></td>
<td ><i class='glyphicon glyphicon-trash' tile='Permiso de Eliminación'>tercero</i></td>
</tr>
<tr>
<tr ng-repeat="rol in aRoles">
<td>{{rol.tipo_contenido}}</td>
<td >1</td>
<td >1</td>
<td >1</td>
<td >1</td>
<td >1</td>
<td >1</td>
</tr>
</table>
I have tried everything but I can not manage to duplicate that piece by means of a ng-repeat