</head>
<body>
-<table>
+<table class="show">
<tr>
<th>Nombre:</th>
<td><span py:replace="record.nombre">nombre</span></td>
<th>Curso:</th>
<td><span py:replace="record.curso.shortrepr()">curso</span></td>
</tr>
+ <tr>
+ <th>Tutores:</th>
+ <td>
+ <span py:for="a in record.tutores">
+ <span py:replace="a.docente.shortrepr()" />
+ <br />
+ </span>
+ </td>
+ </tr>
<tr>
<th>Responsable:</th>
<td><span py:if="record.responsable is not None" py:replace="record.responsable.shortrepr()">numero</span></td>
<th>Integrantes:</th>
<td>
<span py:for="a in record.miembros">
- <span py:replace="a.alumno.shortrepr()" />
+ <a href="${tg.url('/alumno_inscripto/show/%d' % a.alumno.id)}" py:content="a.alumno.shortrepr()" />
<br />
</span>
</td>