@paginate('records')
def list(self, curso):
"""List records in model"""
- r = cls.selectBy(cursoID=curso)
+ r = cls.selectBy(cursoID=curso).orderBy(cls.q.numero)
return dict(records=r, name=name, namepl=namepl, curso=curso)
@expose(template='kid:%s.templates.new' % __name__)
validate_del(id)
flash(_(u'El %s fue eliminado permanentemente.') % name)
raise redirect('../list')
-
- @expose()
- def files(self, id):
- r = validate_get(id)
- response.headers["Content-Type"] = r.archivo_type
- response.headers["Content-disposition"] = "attachment;filename=%s" % (r.archivo_name)
- flash(_(u'El %s fue eliminado permanentemente.') % name)
- return r.archivo
#}}}