{% extends "main/base.html" %} {% block header_icon %}{% endblock %} {% block headline %}Ticket #{{ticket.id}}{% endblock %} {% block head-message %}Everything you need to know about this ticket{% endblock %} {% block title %}Tickets - Details of ticket #{{ ticket.id }}{% endblock %} {% block content %}
Status {% if ticket.status == "TODO" %}TODO{% elif ticket.status == "DONE" %}DONE{% elif ticket.status == "WAITING" %}WAITING{% elif ticket.status == "IN PROGRESS" %}IN PROGRESS{% endif %}
Assigned to {% if ticket.assigned_to %}{{ ticket.assigned_to.first_name }} {{ ticket.assigned_to.last_name }}{% else %}---{% endif %}
Owner {{ ticket.owner.first_name }} {{ ticket.owner.last_name }}
Title {{ ticket.title }}
Description {{ ticket.description}}
{% if attachments %}

Attachments

{% endif %}

Followups

{% if followups %} {% for followup in followups %} {% endfor %}
User Text Modified
{{ followup.user.first_name }} {{ followup.user.last_name }} {{ followup.text }} {{ followup.modified|date:"d.m.Y, G:i" }}
{% else %}

no followup so far...

{% endif %} {% endblock %}