app/soc/templates/soc/student_proposal/list/row.html
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 29 Apr 2009 18:51:58 +0200
changeset 2284 e7bb719e2539
parent 2109 3b349cd95b07
permissions -rw-r--r--
Fix Issue 389 (Clicking list entry will not open new tab/window). Patch by: Daniel Hans Reviewed by: Pawel Solyga

<tr class="off" onmouseover="this.className='on'; do_redirect=true" onmouseout="this.className='off'" 
onclick="if (do_redirect) document.location.href='{{ list.redirect }}'" name="name">
  <td align="right"><div class="title"><a class="noul" onclick="do_redirect=false"
         href="{{ list.redirect }}">{{ list.item.title }}</a>
     </div>
  </td>
  <td><div class="name">{{ list.item.scope.name }}</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>