app/soc/templates/soc/student_project/list/row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 28 Jul 2009 11:23:11 +0200
changeset 2685 506cda0463e8
parent 2284 e7bb719e2539
permissions -rw-r--r--
Added columns to the manage project page that show the amount of evaluations. The total possible amount of evaluations that is shown is based on surveys which have at least one Record.
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: 2111
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: 2111
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: 2111
diff changeset
     3
  <td align="right"><div class="name"><a class="noul" onclick="do_redirect=false"
2111
dfe684de7f92 Student Project listing now includes mentor column.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1934
diff changeset
     4
         href="{{ list.redirect }}">{{ list.item.student.name }}</a>
1934
fb29f54c588a Added basic Student Project templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
     </div>
fb29f54c588a Added basic Student Project templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
  </td>
fb29f54c588a Added basic Student Project templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
  <td><div class="title">{{ list.item.title }}</a></div></td>
2111
dfe684de7f92 Student Project listing now includes mentor column.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1934
diff changeset
     8
  <td><div class="title">{{ list.item.mentor.name }}</a></div></td>
1934
fb29f54c588a Added basic Student Project templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
  <td><div class="status">{{ list.item.status }}</a></div></td>
fb29f54c588a Added basic Student Project templates.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
</tr>