]> git.llucax.com Git - software/sercom.git/commitdiff
Docente inscripto
authortailor <ndimov@gmail.com>
Tue, 27 Feb 2007 23:35:52 +0000 (23:35 +0000)
committertailor <ndimov@gmail.com>
Tue, 27 Feb 2007 23:35:52 +0000 (23:35 +0000)
* algunos cambios en los templates..

sercom/subcontrollers/curso/templates/list.kid
sercom/subcontrollers/docente_inscripto/templates/edit.kid
sercom/subcontrollers/docente_inscripto/templates/list.kid
sercom/subcontrollers/docente_inscripto/templates/show.kid

index 52d7c1944eb1a415fa3f885124337c77f227604b..db936ce6628069a087de63f330ed566a1e772766 100644 (file)
@@ -11,9 +11,9 @@
 
 <table>
     <tr>
-        <th>Anio</th>
-        <th>Cuatrimestre</th>
         <th>Numero</th>
+        <th>Cuatrimestre</th>
+        <th>Anio</th>
         <th>Descripcion</th>
         <th>Docentes</th>
         <th>Alumnos</th>
index 7b50a66d2f81063ea5d11985c21bd6717e1ec888..f5c603404c26bbd57b3f936bc12de384ee89e176 100644 (file)
@@ -9,12 +9,12 @@
 
 <h1>Modificación de <span py:replace="name">Objeto</span></h1>
 
-<div py:replace="form(value=record, action=tg.url('/curso/update/%d' % record.id),
+<div py:replace="form(value=record, action=tg.url('/docente_inscripto/update/%d' % record.id),
        submit_text=_(u'Guardar'))">Formulario</div>
 
 <br/>
-<a href="${tg.url('/curso/show/%d' % record.id)}">Ver (cancela)</a> |
-<a href="${tg.url('/curso/list')}">Volver (cancela)</a>
+<a href="${tg.url('/docente_inscripto/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/docente_inscripto/list')}">Volver (cancela)</a>
 
 </body>
 </html>
index b862349058eaf558abb50bf741b409d8525f1279..8529729be5e8812081ba2e943b5a138c398b4527 100644 (file)
             f.method = 'POST'; f.action = '${tg.url('/alumno/activate/%d/%d' % (record.id, int(not record.activo)))}';
             f.submit(); return false;"
             py:attrs="checked=tg.checker(record.activo)" /></td-->
-        <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span
-                    py:replace="record.curso">curso</span></a></td>
-        <td><span py:replace="record.docente">docente</span></td>
-        <td><span py:replace="record.corrige">corrige</span></td>
+        <td><a href="${tg.url('/curso/show/%d' % record.id)}"><span py:replace="record.curso.shortrepr()">curso</span></a></td> 
+        <td><a href="${tg.url('/docente/show/%d' % record.id)}"><span py:replace="record.docente.shortrepr()">docentes</span></a></td> 
+        <td><span py:if="record.corrige">SI</span><span py:if="not record.corrige">NO</span></td>
         <td><span py:replace="record.observaciones">observaciones</span></td>
         <td><a href="${tg.url('/docente_inscripto/edit/%d' % record.id)}">Editar</a>
             <a href="${tg.url('/docente_inscripto/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>
index c8b304931f75fd60bcb3854cec09b5d7a7131e38..4dce4ebe68bf99bb3f6faffd5ddccb3980152adf 100644 (file)
 <table>
     <tr>
         <th>Curso:</th>
-        <td><span py:replace="record.curso">curso</span></td>
+        <td><span py:replace="record.curso.shortrepr()">curso</span></td>
     </tr>
     <tr>
         <th>Docente:</th>
-       <td><span py:replace="record.docente">docente</span></td>
+               <td><span py:replace="record.docente.shortrepr()">docente</span></td>
     </tr>
     <tr>
-        <th>Corrige:</th>
-       <td><span py::replace="record.numero">numero</span></td>
+        <th>Observaciones:</th>
+               <td><span py:replace="record.observaciones">numero</span></td>
     </tr>
     <tr>
-        <th>Descripcion:</th>
-                               <td><span py:if="record.corrige">SI</span></td>
-                               <td><span py:if="not record.corrige">NO</span></td>
+        <th>Corrige:</th>
+               <td><span py:if="record.corrige">SI</span><span py:if="not record.corrige">NO</span></td>
     </tr>
 </table>