{% extends 'safety/safety_base.html' %} {% load custom_tags_and_filters %} {% block title %}Safety issues{% endblock %} {% block safety_title %}Resolved safety issues{% endblock %} {% block tab_content %}

This page lists previously reported and resolved safety issues.

{% button type="info" url="safety_issues" value="Current safety issues" icon="glyphicon-list" %}
{% for ticket in tickets %}

Concern

{{ ticket.concern|linebreaksbr }}
{% if not ticket.visible %} This issue is hidden from users
{% endif %} {% if ticket.location %} Location: {{ ticket.location }}
{% endif %} {% if ticket.reporter %} Reported on {{ ticket.creation_time }} {% if user.is_staff %}by {{ ticket.reporter }}{% endif %}
{% else %} Reported anonymously on {{ ticket.creation_time }}
{% endif %} Resolved on {{ ticket.resolution_time }} by {{ ticket.resolver }}
{% if ticket.progress %}

Progress

{{ ticket.progress|linebreaksbr }}
{% endif %}
{% if ticket.resolution %}

Resolution

{{ ticket.resolution|linebreaksbr }}

{% else %}

This problem was resolved, but no resolution information was provided.

{% endif %}
{% empty %} There are no past issues. {% endfor %} {% endblock %}