{% extends "base.html" %} {% load staticfiles %} {% block extra_css %} {% endblock %} {% block jumbotron_inner %}

{{ ticket.id }}: {{ ticket.title }}

Created by:
Created at:
{{ ticket.created_at }}
Edited at:
{% if ticket.edited_at %}{{ ticket.edited_at }}{% else %}Never edited{% endif %}
{% if ticket.imported_key %}
Imported from:
{% endif %}
Tags:
{% include "includes/ticket_tags.html" %}
New comment {% if ticket.comment_set.count > 0 %} Go to latest comment {% endif %}
{% endblock %} {% block body %} {% if ticket.comment_set.count > 0 %} {% include "includes/connecter_border.html" %}
{% for comment in ticket.comment_set.all %}
{% if forloop.last %} {% endif %}
Comment {{ forloop.counter }} at {{ comment.created_at }} ({{ comment.commenter }})
{{ comment.text|safe }}
{% if not forloop.last %} {% include "includes/connecter_border.html" %} {% endif %} {% endfor %}
{% endif %} {% include "includes/new_comment_box.html" %} {% endblock %}