| | 302 | |
| | 303 | <fieldset py:if="not ticket.exists" id="newticket"> |
| | 304 | <legend>New</legend> |
| | 305 | <div> |
| | 306 | |
| | 307 | <input type="text" id="field-summary" name="field_summary" value="$ticket.summary" size="50" /> |
| | 308 | <br/> |
| | 309 | <py:if test="'TICKET_ADMIN' in perm(ticket.resource) or not ticket.exists"> |
| | 310 | <textarea py:if="not ticket.exists" type="hidden" id="field-description" name="field_description" |
| | 311 | class="wikitext" rows="5" cols="30" |
| | 312 | py:content="ticket.description"></textarea> |
| | 313 | </py:if> |
| | 314 | </div> |
| | 315 | </fieldset> |
| | 316 | |