{% extends "base.html" %} {% block title %}Issue #{{ issue.short_uuid }}{% endblock %} {% block content %}

Issue #{{ issue.short_uuid }}

Reported by {{ issue.reported_by.get_full_name|default:issue.reported_by.username }} on {{ issue.created_at|date:"F j, Y \a\\t g:i A" }}

{{ issue.get_status_display }} {{ issue.get_priority_display }}
{{ issue.title }}
Description

{{ issue.description|linebreaks }}

{% if issue.reported_url %}
Reported URL
View Page {{ issue.reported_url }}
{% endif %}
Issue Details
Status: {{ issue.get_status_display }}
Priority: {{ issue.get_priority_display }}
Reported by:
{{ issue.reported_by.get_full_name|default:issue.reported_by.username }}
{% if issue.assigned_to %}
Assigned to:
{{ issue.assigned_to.get_full_name|default:issue.assigned_to.username }}
{% endif %}
Created:
{{ issue.created_at|date:"F j, Y \a\\t g:i A" }}
{% if issue.updated_at != issue.created_at %}
Updated:
{{ issue.updated_at|date:"F j, Y \a\\t g:i A" }}
{% endif %}
{% endblock %}