]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/ejercicio/templates/show.kid
linkeo miembros de un grupo con show de alumno_inscripto
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / ejercicio / templates / show.kid
index e53f7188870eb3f420e42eaa2ba67a647e1e2eef..0281c7d9cb6b581d03a7a567ee813fe199f192d6 100644 (file)
@@ -9,23 +9,36 @@
 
 <table>
     <tr>
 
 <table>
     <tr>
-        <th>Nombre:</th>
-        <td><span py:replace="record.nombre">nombre</span></td>
+        <th>Curso:</th>
+                               <td>
+                                       <a href="${tg.url('/curso/show/%d' % record.curso.id)}">
+                                               <span py:replace="record.curso.shortrepr()">nombre</span>
+                                       </a>
+                               </td>
     </tr>
     <tr>
     </tr>
     <tr>
-        <th>Descripción:</th>
-       <td><span py:replace="XML(record.desc)">descripcion</span></td>
+        <th>Número:</th>
+       <td><span py:replace="record.numero">descripcion</span></td>
     </tr>
     <tr>
     </tr>
     <tr>
-        <th>Autor:</th>
-       <td><a py:if="record.autorID is not None"
-                       href="${tg.url('/docente/show/%d' % record.autor.id)}"><span py:replace="record.autor.shortrepr()">autor</span></a></td>
+        <th>Enunciado:</th>
+       <td>
+               <a href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}">
+                       <span py:replace="record.enunciado.shortrepr()">autor</span>
+               </a>
+       </td>
     </tr>
     </tr>
+    <tr>
+        <th>Es grupal?:</th>
+       <td>
+                       <span py:replace="record.grupal">grupal</span>
+       </td>
+  </tr>
 </table>
 
 <br/>
 </table>
 
 <br/>
-<a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a> |
-<a href="${tg.url('/enunciado/list')}">Volver</a>
+<a href="${tg.url('/ejercicio/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/ejercicio/list')}">Volver</a>
 
 </body>
 </html>
 
 </body>
 </html>