]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/templates/welcome.kid
Fixes de unicode.
[software/sercom.git] / sercom / templates / welcome.kid
index cb2819359a02a3998909da3906537ef0cf848761..603637b3044e1cd857ce775656c2f69707425490 100644 (file)
@@ -38,7 +38,6 @@
     </div>
 
     <div py:if="'entregar' in identity.current.permissions and 'admin' not in identity.current.permissions">
-                       <h1>Soy entregar</h1>
         <h2>Instancias de Entrega</h2>
         <div py:if="len(instancias_activas)">
             <ul py:for="instancia in instancias_activas">
                 </li>
             </ul>
         </div>
-        <div py:if="not len(instancias_activas)">
-            No hay Ejercicios con entregas en curso en este momento.
-        </div>
+        <h2>Últimas entregas realizadas</h2>
+        <table py:if="len(entregas)">
+            <tr>
+                <th>Ejercicio</th>
+                <th>Fecha Entrega</th>
+            </tr>
+            <tr py:for="e in entregas">
+                <td>${e.instancia.ejercicio.shortrepr()}</td>
+                <td>${e.fecha}</td>
+            </tr>
+        </table>
     </div>
 </body>
 </html>