]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/curso/ejercicio/templates/list.kid
más cleanup de detalles de presentación.
[software/sercom.git] / sercom / subcontrollers / curso / ejercicio / templates / list.kid
index 2073bc3a4aedab96b0ce7f161aad673696913d61..7c02354c930917556e22afeb34e2694a4dde13ea 100644 (file)
@@ -8,11 +8,11 @@
 </head>
 <body>
 
-<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+<h1><span py:replace="namepl.capitalize()">Objetos</span> del curso <span py:replace="curso.shortrepr()" /></h1>
 
 <table class="list">
     <tr>
-        <th>Numero</th>
+        <th>Número</th>
         <th>Enunciado</th>
         <th>Es Grupal?</th>
         <th>Operaciones</th>
@@ -23,7 +23,7 @@
         <td><span py:replace="tg.strbool(record.grupal)">grupal</span></td>
         <td>
             <a href="${tg.url('/curso/ejercicio/show/%d' % record.id)}">Ver</a>
-            <a href="${tg.url('/curso/ejercicio/entrega/%d' % record.id)}">Entregas</a>
+            <a href="${tg.url('/curso/ejercicio/instancia/list/%d' % record.id)}">Instancias</a>
             <a href="${tg.url('/enunciado/files/%d' % record.enunciadoID)}">Bajar archivos</a>
             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/edit/%d' % record.id)}">Editar</a>
             <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/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>
@@ -33,6 +33,7 @@
 
 <br/>
 <a py:if="'admin' in identity.current.permissions" href="${tg.url('/curso/ejercicio/new/%s' % curso)}">Agregar</a>
+| <a href="${tg.url('/curso')}">Volver a Cursos</a>
 
 <div py:for="page in tg.paginate.pages">
     <a py:if="page != tg.paginate.current_page"