Changeset 3986
- Timestamp:
- 07/07/08 17:54:55 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ticketsubmitpolicyplugin/0.11/ticketsubmitpolicy/templates/ticketsubmitpolicy.html
r3985 r3986 18 18 19 19 <table> 20 <tr py:for=" condition in policies[name]['condition']">20 <tr py:for="index, condition in enumerate(policies[name]['condition'])"> 21 21 22 22 <td class="field"> … … 46 46 <input type="text" value="${condition['value']}"/> 47 47 </td> 48 49 <td class="actions"> 50 <input type="submit" name="rm_condition_${index}" value="-"/> 51 </td> 48 52 </tr> 49 53 </table> 54 <input type="submit" name="add_condition}" value="+"/> 50 55 </div> 51 56 … … 68 73 </py:for> 69 74 </td> 75 <td class="actions"> 76 <input type="submit" name="rm_policy_${action['name']}" value="-"/> 77 </td> 70 78 </tr> 71 79 </div>
