mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-05-20 17:30:46 +02:00
commit
e8ee39ddaa
@ -15,16 +15,15 @@
|
|||||||
<dd>{{ form.ticket }}</dd>
|
<dd>{{ form.ticket }}</dd>
|
||||||
<dt><label for="id_title">{% trans "Title:" %}</label></dt>
|
<dt><label for="id_title">{% trans "Title:" %}</label></dt>
|
||||||
<dd>{{ form.title }}</dd>
|
<dd>{{ form.title }}</dd>
|
||||||
</dt>
|
|
||||||
<dt><label for="id_comment">{% trans "Comment:" %}</label></dt>
|
<dt><label for="id_comment">{% trans "Comment:" %}</label></dt>
|
||||||
<dd>{{ form.comment }}</dd>
|
<dd>{{ form.comment }}</dd>
|
||||||
</dt>
|
|
||||||
<dt><label for="id_public">Public:</label></dt>
|
<dt><label for="id_public">Public:</label></dt>
|
||||||
<dd>{{ form.public }}</dd>
|
<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>
|
<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>
|
<dt><label for="id_new_status">New Status:</label></dt>
|
||||||
<dd>{{ form.new_status }}</dd>
|
<dd>{{ form.new_status }}</dd>
|
||||||
<p>If the status was changed, what was it changed to?</p>
|
<p>If the status was changed, what was it changed to?</p>
|
||||||
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><input type="submit" value="Submit"></p>{% csrf_token %}
|
<p><input type="submit" value="Submit"></p>{% csrf_token %}
|
||||||
</form>
|
</form>
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
<dt><label for='id_{{ field.name }}'>{{ field.label }}</label>{% if not field.field.required %} <span class='form_optional'>{% trans "(Optional)" %}</span>{% endif %}</dt>
|
<dt><label for='id_{{ field.name }}'>{{ field.label }}</label>{% if not field.field.required %} <span class='form_optional'>{% trans "(Optional)" %}</span>{% endif %}</dt>
|
||||||
<dd>{{ field }}</dd>
|
<dd>{{ field }}</dd>
|
||||||
{% if field.errors %}<dd class='error'>{{ field.errors }}</dd>{% endif %}
|
{% if field.errors %}<dd class='error'>{{ field.errors }}</dd>{% endif %}
|
||||||
{% if field.help_text %}<dd class='form_help_text'>{{ field.help_text }}</dd>{% endif %}</label>
|
{% if field.help_text %}<dd class='form_help_text'>{{ field.help_text }}</dd>{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</dl>
|
</dl>
|
||||||
|
@ -66,7 +66,7 @@
|
|||||||
<li><a href='{{ attachment.file.url }}'>{{ attachment.filename }}</a> ({{ attachment.mime_type }}, {{ attachment.size|filesizeformat }})</li>
|
<li><a href='{{ attachment.file.url }}'>{{ attachment.filename }}</a> ({{ attachment.mime_type }}, {{ attachment.size|filesizeformat }})</li>
|
||||||
{% if forloop.last %}</ul></div>{% endif %}
|
{% if forloop.last %}</ul></div>{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div></ul>{% endif %}
|
</ul></div>{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -90,7 +90,7 @@ function googleTranslateElementInit() {
|
|||||||
{% for change in followup.ticketchange_set.all %}
|
{% for change in followup.ticketchange_set.all %}
|
||||||
{% if forloop.first %}<div class='changes'><ul>{% endif %}
|
{% if forloop.first %}<div class='changes'><ul>{% endif %}
|
||||||
<li>{% blocktrans with change.field as field and change.old_value as old_value and change.new_value as new_value %}Changed {{ field }} from {{ old_value }} to {{ new_value }}.{% endblocktrans %}</li>
|
<li>{% blocktrans with change.field as field and change.old_value as old_value and change.new_value as new_value %}Changed {{ field }} from {{ old_value }} to {{ new_value }}.{% endblocktrans %}</li>
|
||||||
{% if forloop.last %}</div></ul>{% endif %}
|
{% if forloop.last %}</ul></div>{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% for attachment in followup.attachment_set.all %}{% if forloop.first %}<div class='attachments'><ul>{% endif %}
|
{% for attachment in followup.attachment_set.all %}{% if forloop.first %}<div class='attachments'><ul>{% endif %}
|
||||||
<li><a href='{{ attachment.file.url }}'>{{ attachment.filename }}</a> ({{ attachment.mime_type }}, {{ attachment.size|filesizeformat }})
|
<li><a href='{{ attachment.file.url }}'>{{ attachment.filename }}</a> ({{ attachment.mime_type }}, {{ attachment.size|filesizeformat }})
|
||||||
|
Loading…
Reference in New Issue
Block a user