app/soc/templates/soc/student_project/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 07 Apr 2009 08:40:51 +0000
changeset 2111 dfe684de7f92
parent 1934 fb29f54c588a
child 2284 e7bb719e2539
permissions -rw-r--r--
Student Project listing now includes mentor column. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
onclick="document.location.href='{{ list.redirect }}'" name="name">
  <td align="right"><div class="name"><a class="noul"
         href="{{ list.redirect }}">{{ list.item.student.name }}</a>
     </div>
  </td>
  <td><div class="title">{{ list.item.title }}</a></div></td>
  <td><div class="title">{{ list.item.mentor.name }}</a></div></td>
  <td><div class="status">{{ list.item.status }}</a></div></td>
</tr>