| 6 | | <table> |
| 7 | | <tr><th colspan="2">{% trans "Adding Iteration" %}</th></tr> |
| 8 | | {{iteration_form.as_table}} |
| 9 | | </table> |
| | 8 | <fieldset> |
| | 9 | <legend>Ticket info</legend> |
| | 10 | <table class="table"> |
| | 11 | <col width="20%"> |
| | 12 | <col width="80%"> |
| | 13 | <tr> |
| | 14 | <th>{% trans "Author" %}</th> |
| | 15 | <td>{{ ticket.creator.username }}</td> |
| | 16 | </tr> |
| | 17 | <tr> |
| | 18 | <th>{% trans "Date of Registration" %}</th> |
| | 19 | <td>{{ ticket.created }}</td> |
| | 20 | </tr> |
| | 21 | <tr> |
| | 22 | <th>{% trans "Context" %}</th> |
| | 23 | <td>{{ ticket.context }}</td> |
| | 24 | </tr> |
| | 25 | <tr> |
| | 26 | <th>{% trans "Ticket Type" %}</th> |
| | 27 | <td>{{ ticket.type }}</td> |
| | 28 | </tr> |
| | 29 | </table> |
| | 30 | </fieldset> |