Fix ticket page

This commit is contained in:
cuom1999 2023-01-27 16:26:28 -06:00
parent 840209b2cb
commit 65eb49a840
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,5 @@
.ticket-container { .ticket-container {
display: flex;
#content > h2:first-child small { #content > h2:first-child small {
color: #999; color: #999;
font-size: 0.9em; font-size: 0.9em;

View file

@ -144,10 +144,10 @@
{% endblock %} {% endblock %}
{% block content_title %} {% block content_title %}
<div class="status"> <span class="status">
<i class="fa {% if ticket.is_open %}fa-exclamation-circle{% else %}fa-check-circle-o{% endif %}"></i> <i class="fa {% if ticket.is_open %}fa-exclamation-circle{% else %}fa-check-circle-o{% endif %}"></i>
</div> </span>
<div class="title">{{ ticket.title }}</div><small>#{{ ticket.id }}</small> <span class="title">{{ ticket.title }}</span><small>#{{ ticket.id }}</small>
{% endblock %} {% endblock %}
{% block body %} {% block body %}