1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <?python from turbogears import identity ?>
3 <?python from sercom.model import TareaPrueba, TareaFuente ?>
4 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
5 py:extends="'../../../templates/master.kid'">
7 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
14 <th>Año-Cuatrimestre:</th>
15 <td><span py:replace="str(record.anio)+'-'+str(record.cuatrimestre)">nombre</span></td>
19 <td><span py:replace="record.nombre">nombre</span></td>
23 <td><span py:replace="record.descripcion">descripcion</span></td>
27 <td><a py:if="record.autorID is not None"
28 href="${tg.url('/docente/show/%d' % record.autor.id)}"><span py:replace="record.autor.shortrepr()">autor</span></a></td>
32 <td><span py:replace="record.creado">descripcion</span></td>
37 <a py:if="record.archivos" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
44 <li py:for="t in record.tareas">
45 <a py:if="isinstance(t, TareaFuente)" href="${tg.url('/tarea_fuente/show/%d' % t.id)}" py:content="t.shortrepr()"></a>
46 <a py:if="isinstance(t, TareaPrueba)" href="${tg.url('/tarea_prueba/show/%d' % t.id)}" py:content="t.shortrepr()"></a>
52 <th>Casos de Prueba:</th>
55 <li py:for="t in record.casos_de_prueba" py:content="t.shortrepr()" />
59 <tr py:if="'admin' in identity.current.permissions">
60 <th>Ejercicios en los<br /> que es Usado:</th>
63 <li py:for="t in record.ejercicios" py:content="t.shortrepr()" />
70 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a> |
71 <a href="javascript:window.history.go(-1);">Volver</a>