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 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
4 py:extends="'../../../templates/master.kid'">
6 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
11 <h1>Administración de <span py:replace="namepl">Objetos</span></h1>
20 <th py:if="'admin' in identity.current.permissions">Tareas</th>
21 <th py:if="'admin' in identity.current.permissions" title="Casos de Prueba">CP</th>
24 <tr py:for="record in records">
25 <td><span py:replace="record.cuatrimestre">descripción</span></td>
26 <td><span py:replace="record.anio">descripción</span></td>
27 <td><a href="${tg.url('/enunciado/show/%d' % record.id)}"><span py:replace="record.nombre">nombre</span></a></td>
28 <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
30 <a py:if="'admin' in identity.current.permissions and record.autorID is not None"
31 href="${tg.url('/docente/show/%d' % record.autor.id)}" py:content="tg.summarize(record.autor.shortrepr(), 30)">autor</a>
32 <span py:if="'admin' not in identity.current.permissions and record.autorID is not None"
33 py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span>
35 <td py:if="'admin' in identity.current.permissions"><a py:if="len(record.tareas)"
36 href="${tg.url('/enunciado/show/%d' % record.id)}"><span
37 py:replace="len(record.tareas)">cant</span></a></td>
38 <td py:if="'admin' in identity.current.permissions"><span py:content="len(record.casos_de_prueba)" /></td>
40 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/caso_de_prueba/list/%d' % record.id)}">Casos de Prueba</a>
41 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/edit/%d' % record.id)}">Editar</a>
42 <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>
43 <a py:if="record.archivos" href="${tg.url('/enunciado/files/%d' % record.id)}">Bajar Enunciado</a>
49 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/enunciado/new')}">Agregar</a>
51 <div py:for="page in tg.paginate.pages">
52 <a py:if="page != tg.paginate.current_page"
53 href="${tg.paginate.get_href(page)}">${page}</a>
54 <b py:if="page == tg.paginate.current_page">${page}</b>
60 <!-- vim: set et sw=4 sts=4 : -->