app/soc/templates/soc/program/allocation/row.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 08 Mar 2009 02:04:46 +0000
changeset 1735 0298b9c87c65
parent 1705 1dbce30b5757
child 1760 393891d794e2
permissions -rw-r--r--
Update the slot allocation view and template Patch by: Sverre Rabbelier, "Mario Ferraro" <fadinlight@gmail.com> Reviewed by: Sverre Rabbelier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1705
1dbce30b5757 Added a slot allocation view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     1
<tr class="off" onmouseover="this.className='on'" onmouseout="this.className='off'" name="name">
1dbce30b5757 Added a slot allocation view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     2
  <td><div class="name">{{ list.item.name }}</div></td>
1735
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     3
  <td>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     4
      <div class="locked" id="locked_slot_count_{{ list.item.link_id }}">
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     5
      <input type="checkbox" id="id_locked_slot_{{ list.item.link_id }}"
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     6
       onchange="javascript:lockSlots(this);" />
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     7
      </div>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     8
  </td>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
     9
  <td>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    10
    <div class="slots" id="id_slot_count_{{ list.item.link_id }}">
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    11
    <input type="text" id="id_spin_slot_count_{{ list.item.link_id }}"
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    12
     size="3" value="0" onchange="javascript:assignSlots(this)"/>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    13
    </div>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    14
  </td>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    15
  <td>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    16
      <div class="slots" id="id_adjustment_count_{{ list.item.link_id }}">
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    17
      <input type="text" id="id_spin_adjustment_count_{{ list.item.link_id }}"
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    18
      size="3" value="0" onchange="javascript:assignAdjustment(this)"/>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    19
      </div>
0298b9c87c65 Update the slot allocation view and template
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1705
diff changeset
    20
  </td>
1705
1dbce30b5757 Added a slot allocation view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    21
</tr>