app/soc/templates/soc/student_proposal/list/detailed_row.html
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 18 Mar 2009 17:18:19 +0000
changeset 1928 8001eee3160f
parent 1685 4b48cd4e4aa9
child 1983 ba5be8275a75
permissions -rw-r--r--
The org list proposals page now shows the amount of assigned slots. Also colors the list of possible accepted proposals. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1928
8001eee3160f The org list proposals page now shows the amount of assigned slots.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1685
diff changeset
     1
{% ifequal list.info.item_class "selected" %}
8001eee3160f The org list proposals page now shows the amount of assigned slots.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1685
diff changeset
     2
  <tr class="assignedslot" onmouseover="this.className='on'" onmouseout="this.className='assignedslot'" 
8001eee3160f The org list proposals page now shows the amount of assigned slots.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1685
diff changeset
     3
{% else %}
8001eee3160f The org list proposals page now shows the amount of assigned slots.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1685
diff changeset
     4
  <tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" 
8001eee3160f The org list proposals page now shows the amount of assigned slots.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1685
diff changeset
     5
{% endifequal %}
1668
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
onclick="document.location.href='{{ list.redirect }}'" name="name">
1685
4b48cd4e4aa9 Added a rank column to the proposals list.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1668
diff changeset
     7
  <td><div class="rank">{{ list.info.rank }}</a></div></td>
1668
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
  <td align="right"><div class="name"><a class="noul"
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
         href="{{ list.redirect }}">{{ list.item.scope.link_id }}</a>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
     </div>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
  </td>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
  <td><div class="title">{{ list.item.title }}</a></div></td>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
  <td><div class="status">{{ list.item.status }}</a></div></td>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
  <td><div class="score">{{ list.item.score }}</a></div></td>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
  <td><div class="date">{{ list.item.last_modified_on }}</a></div></td>
e3780ee24322 The organization proposal list has been significantly changed.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
</tr>