remove closing </dt> tags for unopened <dt>. and close <dl>

This commit is contained in:
Oriane Chagnon 2012-04-30 18:08:42 -03:00
parent 951539db91
commit 77c6008b9a

View File

@ -15,16 +15,15 @@
<dd>{{ form.ticket }}</dd>
<dt><label for="id_title">{% trans "Title:" %}</label></dt>
<dd>{{ form.title }}</dd>
</dt>
<dt><label for="id_comment">{% trans "Comment:" %}</label></dt>
<dd>{{ form.comment }}</dd>
</dt>
<dt><label for="id_public">Public:</label></dt>
<dd>{{ form.public }}</dd>
<p>Public tickets are viewable by the submitter and all staff, but non-public tickets can only be seen by staff.</p>
<dt><label for="id_new_status">New Status:</label></dt>
<dd>{{ form.new_status }}</dd>
<p>If the status was changed, what was it changed to?</p>
</dl>
</fieldset>
<p><input type="submit" value="Submit"></p>{% csrf_token %}
</form>