def show(self,id, **kw):
"""Show record in model"""
r = validate_get(id)
- if r.descripcion is None:
- r.desc = ''
- else:
- r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
return dict(name=name, namepl=namepl, record=r)
@expose()
<table>
<tr>
- <th>Nombre:</th>
- <td><span py:replace="record.nombre">nombre</span></td>
+ <th>Curso:</th>
+ <td>
+ <a href="${tg.url('/curso/show/%d' % record.curso.id)}">
+ <span py:replace="record.curso.shortrepr()">nombre</span>
+ </a>
+ </td>
</tr>
<tr>
- <th>Descripción:</th>
- <td><span py:replace="XML(record.desc)">descripcion</span></td>
+ <th>Número:</th>
+ <td><span py:replace="record.numero">descripcion</span></td>
</tr>
<tr>
- <th>Autor:</th>
- <td><a py:if="record.autorID is not None"
- href="${tg.url('/docente/show/%d' % record.autor.id)}"><span py:replace="record.autor.shortrepr()">autor</span></a></td>
+ <th>Enunciado:</th>
+ <td>
+ <a href="${tg.url('/enunciado/show/%d' % record.enunciado.id)}">
+ <span py:replace="record.enunciado.shortrepr()">autor</span>
+ </a>
+ </td>
</tr>
+ <tr>
+ <th>Es grupal?:</th>
+ <td>
+ <span py:replace="record.grupal">grupal</span>
+ </td>
+ </tr>
</table>
<br/>