]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/enunciado/templates/list.kid
Exploto los permisos en Tareas para que los Alumnosp puedan acceder al show.
[software/sercom.git] / sercom / subcontrollers / enunciado / templates / list.kid
index 35dedf76a52b2bd7b854bdc400b5fd52e6f913e6..b7f3d7f544b26c719fe78411395bc0fe90b1efec 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">
 <!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>
 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
     py:extends="'../../../templates/master.kid'">
 <head>
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
 
 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
 
-<table>
+<table class="list">
     <tr>
     <tr>
+        <th>Cuatrimestre</th>
+        <th>Año</th>
         <th>Nombre</th>
         <th>Descripción</th>
         <th>Autor</th>
         <th>Nombre</th>
         <th>Descripción</th>
         <th>Autor</th>
-        <th title="Casos de Prueba">CP</th>
+        <th py:if="'admin' in identity.current.permissions">Tareas</th>
+        <th py:if="'admin' in identity.current.permissions" title="Casos de Prueba">CP</th>
         <th>Operaciones</th>
     </tr>
         <th>Operaciones</th>
     </tr>
-    <tr py:for="record in records">
+               <tr py:for="record in records">
+        <td><span py:replace="record.cuatrimestre">descripción</span></td>
+        <td><span py:replace="record.anio">descripción</span></td>
         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
         <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
         <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
-        <td><a py:if="record.autorID is not None"
-                href="${tg.url('/docente/show/%d' % record.autor.id)}"><span
-                    py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
-        <td><a py:if="len(record.casos_de_prueba)"
-                href="${tg.url('/caso_de_prueba/list/%d' % record.id)}"><span
+                               <td>
+                                       <a py:if="'admin' in identity.current.permissions and record.autorID is not None"
+                                               href="${tg.url('/docente/show/%d' % record.autor.id)}" py:content="tg.summarize(record.autor.shortrepr(), 30)">autor</a>
+                                       <span py:if="'admin' not in identity.current.permissions and record.autorID is not None"
+                                               py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span>
+                               </td>
+        <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.tareas)"
+                href="${tg.url('/enunciado/show/%d' % record.id)}"><span
+                    py:replace="len(record.tareas)">cant</span></a></td>
+        <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.casos_de_prueba)"
+                href="${tg.url('/caso_de_prueba/list', enunciado=record.id)}"><span
                     py:replace="len(record.casos_de_prueba)">cant</span></a></td>
                     py:replace="len(record.casos_de_prueba)">cant</span></a></td>
-        <td><a href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
-            <a href="${tg.url('/enunciado/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>
+        <td>
+            <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
+            <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/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="record.archivo" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
+        </td>
     </tr>
 </table>
 
 <br/>
     </tr>
 </table>
 
 <br/>
-<a href="${tg.url('/enunciado/new')}">Agregar</a>
+<a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/new')}">Agregar</a>
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"