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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2284
e7bb719e2539 Fix Issue 389 (Clicking list entry will not open new tab/window).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 2109
diff changeset
     1
<tr class="off" onmouseover="this.className='on'; do_redirect=true" onmouseout="this.className='off'" 
e7bb719e2539 Fix Issue 389 (Clicking list entry will not open new tab/window).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 2109
diff changeset
     2
onclick="if (do_redirect) document.location.href='{{ list.redirect }}'" name="name">
e7bb719e2539 Fix Issue 389 (Clicking list entry will not open new tab/window).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 2109
diff changeset
     3
  <td align="right"><div class="title"><a class="noul" onclick="do_redirect=false"
1999
bb3317e4db12 Now showing student name in list proposal views.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1983
diff changeset
     4
         href="{{ list.redirect }}">{{ list.item.title }}</a>
1423
54960277c85d Added student proposal view templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
     </div>
54960277c85d Added student proposal view templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
  </td>
1999
bb3317e4db12 Now showing student name in list proposal views.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1983
diff changeset
     7
  <td><div class="name">{{ list.item.scope.name }}</a></div></td>
1983
ba5be8275a75 Student proposal list now shows proper date and the normal list shows the organization name.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1465
diff changeset
     8
  <td><div class="status">{{ list.item.org.name }}</a></div></td>
ba5be8275a75 Student proposal list now shows proper date and the normal list shows the organization name.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1465
diff changeset
     9
  <td><div class="date">{{ list.item.last_modified_on|date:"jS F Y H:i" }}</a></div></td>
1423
54960277c85d Added student proposal view templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
</tr>