class Enunciado(SQLObject, ByObject): #{{{
# Clave
nombre = UnicodeCol(length=60, alternateID=True)
+ anio = IntCol(notNone=True)
cuatrimestre = IntCol(notNone=True)
- numero = IntCol(notNone=True)
# Campos
autor = ForeignKey('Docente')
descripcion = UnicodeCol(length=255, default=None)
if tareas:
self.tareas = tareas
+ @classmethod
def selectByCurso(self, curso):
return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, numero=curso.numero)
from turbogears import paginate
from docutils.core import publish_parts
from sercom.subcontrollers import validate as val
-from sercom.model import Enunciado, Docente
+from sercom.model import Enunciado, Docente, Curso
from cherrypy import request, response
#}}}
class EnunciadoForm(W.TableForm):
class Fields(W.WidgetsList):
+ anio = W.TextField(label=_(u'Año'),
+ help_text=_(u'Requerido.'),
+ validator=V.Number(min=4, max=4, strip=True))
+ cuatrimestre = W.TextField(label=_(u'Cuatrimestre'),
+ help_text=_(u'Requerido.'),
+ validator=V.Number(min=1, max=1, strip=True))
nombre = W.TextField(label=_(u'Nombre'),
help_text=_(u'Requerido y único.'),
validator=V.UnicodeString(min=5, max=60, strip=True))
response.headers["Content-disposition"] = "attachment;filename=%s" % (r.archivo_name)
flash(_(u'El %s fue eliminado permanentemente.') % name)
return r.archivo
+
+ @expose("json")
+ def de_curso(self, curso_id):
+ c = Curso.get(curso_id)
+ e = Enunciado.selectByCurso(c)
+ return dict(enunciados=e)
#}}}
<table class="list">
<tr>
+ <th>Cuatrimestre</th>
+ <th>Año</th>
<th>Nombre</th>
<th>Descripción</th>
<th>Autor</th>
<th title="Casos de Prueba">CP</th>
<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 py:if="record.autorID is not None"