]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/grupo/templates/list.kid
actualizo el grupo.update
[software/sercom.git] / sercom / subcontrollers / grupo / templates / list.kid
index 9fcdfaf2075c67724fd758ddaf161bbf18314ba5..ab3c05667ff563caa0c68a6ad30588463c6a9ce4 100644 (file)
         <th>Curso</th>
         <th>Nombre</th>
         <th>Responsable</th>
+        <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-        <td><span py:replace="record.curso.shortrepr()">curso</span></td>
+                       <td><a href="${tg.url('/curso/show/'+str(record.curso.id))}" py:content="record.curso.shortrepr()">curso</a></td>
         <td><span py:replace="record.nombre">nombre</span></td>
-        <td><span py:replace="record.responsable"></span></td>
+                               <td><a py:if="record.responsable is not None" href="${tg.url('/alumno/show/'+str(record.responsable.alumno.id))}" py:content="record.responsable.alumno.shortrepr()"></a></td>
                                <td>
+                                       <a href="${tg.url('/grupo/show/%d' % record.id)}">Ver</a>
                                        <a href="${tg.url('/grupo/edit/%d' % record.id)}">Editar</a>
                                        <a href="${tg.url('/grupo/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
                                </td>