]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/ejercicio/entrega/templates/list.kid
Dividir InstanciaDeEntrega.procesada en inicio_proceso y fin_proceso para tener más...
[software/sercom.git] / sercom / subcontrollers / ejercicio / entrega / templates / list.kid
index c0ce791c2e9a0a5a84570cce91bc8b6dd855bc3d..9be5c1698335d398ceb75e039946163b018e4012 100644 (file)
@@ -1,4 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<?python from turbogears import identity ?>
 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
     py:extends="'../../../../templates/master.kid'">
 <head>
@@ -15,6 +16,7 @@
         <th>Inicio</th>
         <th>Fin</th>
         <th>Procesada?</th>
+        <th>En proceso?</th>
         <th>Activa?</th>
         <th>Observaciones</th>
         <th>Operaciones</th>
         <td><span py:replace="record.numero">numero</span></td>
         <td><span py:replace="record.inicio">inicio</span></td>
         <td><span py:replace="record.fin">fin</span></td>
-        <td><span py:replace="record.procesada">procesada</span></td>
-        <td><span py:replace="record.activo">activa</span></td>
+        <td><span py:replace="tg.strbool(record.fin_proceso is not None)">procesada</span></td>
+        <td><span py:replace="tg.strbool(record.inicio_proceso is not None and record.fin_proceso is None)">en proceso</span></td>
+        <td><span py:replace="tg.strbool(record.activo)">activa</span></td>
         <td><span py:replace="record.observaciones">obs</span></td>
         <td>
-            <a href="${tg.url('/entrega/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
+            <a py:if="'admin' in identity.current.permissions" href="${tg.url('/ejercicio/entrega/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a>
         </td>
     </tr>
 </table>
 
 <br/>
-<a href="${tg.url('/entrega/new/'+parcial)}">Agregar</a>
+<a py:if="'admin' in identity.current.permissions" href="${tg.url('/ejercicio/entrega/new/'+parcial)}">Agregar</a>
 <a href="${tg.url('/ejercicio/list')}">Volver a Ejericicios</a>
 
 <div py:for="page in tg.paginate.pages">