]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/curso/alumno/templates/list.kid
Dejar elegir solo instancias de entrega activas al entregar.
[software/sercom.git] / sercom / subcontrollers / curso / alumno / templates / list.kid
index 73f1f997a4955aa0ed9fbb6b7615ea31635d78cc..ff10ed2e4f8bdae46c6838e70a93dd2b74d5b8b4 100644 (file)
 
 <table class="list">
     <tr>
-                               <th>Curso</th>
+        <th>Curso</th>
         <th>Alumno</th>
         <th>Condicional?</th>
         <th>Tutor</th>
-                               <th>Operaciones</th>
+        <th>Operaciones</th>
     </tr>
     <tr py:for="record in records">
-                               <td><a href="${tg.url('/curso/show/%d' % record.curso.id)}" py:content="record.curso.shortrepr()">curso</a></td>
+        <td><a href="${tg.url('/curso/show/%d' % record.curso.id)}" py:content="record.curso.shortrepr()">curso</a></td>
         <td><a href="${tg.url('/curso/alumno/show/%d' % record.alumno.id)}" py:content="record.alumno.shortrepr()">alumno</a></td>
         <td><span py:replace="record.condicional">fecha corregido</span></td>
         <td><a py:if="record.tutor" href="${tg.url('/docente/show/%d' % record.tutor.id)}" py:content="record.tutor.shortrepr()">Tutor</a></td>
-                               <td>
-                                       <a href="${tg.url('/curso/alumno/notas/%d/%d' % (record.id, cursoid))}">Notas</a>
-                               </td>
+        <td>
+            <a href="${tg.url('/curso/alumno/notas/%d/%d' % (record.id, cursoid))}">Notas</a>
+        </td>
     </tr>
 </table>