{% extends "base.html" %} {% block title %}{{ ticket.title }} — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}
← Back to tickets

{{ ticket.title|default:"(untitled)" }}

{% if perms.projects.change_project %} Edit {% endif %} {% if ticket.status == "Open" %} {{ ticket.status }} {% elif ticket.status == "Closed" or ticket.status == "Fixed" %} {{ ticket.status }} {% else %} {{ ticket.status }} {% endif %}

{{ ticket.uuid|truncatechars:16 }} · opened {{ ticket.created|timesince }} ago

Type
{{ ticket.type|default:"—" }}
Priority
{{ ticket.priority|default:"—" }}
Severity
{{ ticket.severity|default:"—" }}
Resolution
{{ ticket.resolution|default:"—" }}
Subsystem
{{ ticket.subsystem|default:"—" }}
Created
{{ ticket.created|date:"N j, Y g:i a" }}
{% if body_html %}
{{ body_html }}
{% endif %}
{% if comments %}

Comments ({{ comments|length }})

{% for c in comments %}
{{ c.user }} {{ c.timestamp|timesince }} ago
{{ c.html }}
{% endfor %}
{% endif %} {% if perms.projects.change_project %}

Add Comment

{% csrf_token %}
{% endif %} {% endblock %}