]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/grupo/templates/show.kid
Presento un poco mejor la Corrida de una Entrega.
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / grupo / templates / show.kid
index 82defc1e3e2d83fe4eb217661cd68ec576b9c566..3d593d116a6698918b9ddba9125b72d989721301 100644 (file)
@@ -7,7 +7,7 @@
 </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>
@@ -24,7 +33,7 @@
         <th>Integrantes:</th>
                                <td>
                                        <span py:for="a in record.miembros">
-                                               <span py:replace="a.alumno.shortrepr()" />
+                                               <a href="${tg.url('/curso/alumno/show/%d/%d' % (a.alumno.id, a.alumno.curso.id))}" py:content="a.alumno.shortrepr()" />
                                                <br />
                                        </span>         
                                </td>