- <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>