{% extends 'safety/safety_base.html' %} {% load custom_tags_and_filters %} {% block title %}Safety issues{% endblock %} {% block safety_title %}Update a safety issue{% endblock %} {% block tab_content %} {% if errors %}{{ form.errors }}{% endif %}
{% csrf_token %}
{% button type="save" value="Save update" %}

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 %}
{% if ticket.progress %}

Progress

{{ ticket.progress|linebreaksbr }}
{% endif %} {% endblock %}