app/soc/templates/soc/student_proposal/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 06 Apr 2009 21:38:10 +0000
changeset 2099 c9792aca29f6
parent 1999 bb3317e4db12
child 2109 3b349cd95b07
permissions -rw-r--r--
Added Mentor name column to StudentProposals list. 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="title"><a class="noul"
         href="{{ list.redirect }}">{{ list.item.title }}</a>
     </div>
  </td>
  <td><div class="name">{{ list.item.scope.name }}</a></div></td>
  <td><div class="name">
    {% if not list.item.mentor %}
      None
    {% else %}
      {{ list.item.mentor.name }}
    {% endif %}
  </a></div></td>
  <td><div class="status">{{ list.item.org.name }}</a></div></td>
  <td><div class="date">{{ list.item.last_modified_on|date:"jS F Y H:i" }}</a></div></td>
</tr>