mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-24 17:04:25 +01:00
More formatting fixes on ticket view page
This commit is contained in:
parent
4432802562
commit
9b17dc3cbd
@ -5,11 +5,18 @@
|
||||
{% block helpdesk_body %}
|
||||
|
||||
<table class="table table-hover table-bordered table-striped">
|
||||
<caption>{{ ticket.ticket }} . {{ ticket.title }} [{{ ticket.get_status }}]</caption>
|
||||
<thead>
|
||||
<tr><th colspan='2'>{% blocktrans with ticket.queue as queue_name %}Queue: {{ queue_name }}{% endblocktrans %}</th></tr>
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
<capiton>
|
||||
{{ ticket.ticket }} . {{ ticket.title }} [{{ ticket.get_status }}]
|
||||
</capiton>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><th>{% blocktrans with ticket.queue as queue_name %}Queue</th>
|
||||
<td>{{ queue_name }}{% endblocktrans %}</td></tr>
|
||||
<tr>
|
||||
<th>{% trans "Submitted On" %}</th>
|
||||
<td>{{ ticket.created|date:"DATETIME_FORMAT" }} ({{ ticket.created|naturaltime }})</td>
|
||||
@ -152,7 +159,7 @@
|
||||
|
||||
</fieldset>
|
||||
|
||||
<button class="btn btn-primary btn-lg" type='submit'>{% trans "Update This Ticket" %}</button>
|
||||
<button class="btn btn-primary btn-lg" style="margin-bottom:10px" type='submit'>{% trans "Update This Ticket" %}</button>
|
||||
|
||||
{% csrf_token %}</form>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user