Changeset 534
- Timestamp:
- 10/10/08 12:19:45 (5 years ago)
- Location:
- trunk/plugins/tickettypedsystem/ticketsystem/templates
- Files:
-
- 2 edited
-
new_ticket.html (modified) (3 diffs)
-
view_ticket.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/tickettypedsystem/ticketsystem/templates/new_ticket.html
r528 r534 12 12 id = 0; 13 13 $('#add_existing').click(function() { 14 $('#relations').append("<label>"+(id + 1) + ": <input type=\"text\" id=\"rel"+id+"\" name=\"rel"+id+"\" /></label> <br />");14 $('#relations').append("<label>"+(id + 1) + ": <input type=\"text\" id=\"rel"+id+"\" name=\"rel"+id+"\" /></label> <br />"); 15 15 id += 1; 16 16 $('#subtickets').val(id); … … 26 26 <py:match path="//div[@id='checklist-add']" once="true"> 27 27 <tr id="relations-container" style="${ style and 'display:none;' or None}" > 28 <th>Relations:</th> 28 <th style="vertical-align:top"><label> 29 <a id="add_existing" href="#properties">Add a subticket</a> 30 </label></th> 29 31 <td colspan="3"> 30 32 <div> … … 33 35 </div> 34 36 <input id="subtickets" name="subtickets" type="hidden" value="0" /> 35 <a id="add_existing" href="#properties">Add a subticket</a>37 36 38 </div> 37 39 </td> -
trunk/plugins/tickettypedsystem/ticketsystem/templates/view_ticket.html
r423 r534 4 4 5 5 <py:match path="//div[@id='checklist-spot']" once="true"> 6 7 <tr id="view-subrelations-container">8 <th >Sub tickets:</th>6 <tr><td colspan="4"> </td></tr> 7 <tr py:if="len(subtickets) > 0" id="view-subrelations-container"> 8 <th style="vertical-align:top" ><label>Sub tickets:</label></th> 9 9 <td colspan="3"> 10 10 <div py:for="ticket in subtickets" id="view-relations"> … … 16 16 </td> 17 17 </tr> 18 <tr id="view-relations-container">19 <th >Parent ticket:</th>18 <tr py:if="len(parents) > 0" id="view-relations-container"> 19 <th style="vertical-align:top"><label>Parent ticket:</label></th> 20 20 <td colspan="3"> 21 21 <div py:for="ticket in parents" id="view-relations">
Note: See TracChangeset
for help on using the changeset viewer.
