{% extends 'base.html' %} {% block title %}Safety{% endblock %} {% block content %}

Safety suggestions and observations

{% if safety_introduction %}

{{ safety_introduction|safe }}

{% else %}

Call 911 if there is an immediate emergency.

We invite your suggestions and observations in order to provide a safer and more effective environment for all users and staff. Use this form to report non-emergency related safety issues, unsafe working conditions, housekeeping suggestions, or observations. You can send your comments or concerns completely anonymously or provide your name so that we can follow up with you.

{% endif %}

You can also view past safety issues that have been resolved.

Report a new safety issue

{% csrf_token %}
Your name will not be visible to NanoFab staff. There will be no way for us to follow up with you about how the safety issue was resolved.
{% if tickets %}

Existing safety issues

{% for ticket in tickets %} {% if user.is_staff %} {% endif %}

{% if ticket.id in notifications %} New {% endif %} Concern

{{ ticket.concern|linebreaksbr }}
{% if not ticket.visible %} This issue is hidden from users
{% endif %} Location: {{ ticket.location }}
{% 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 %}
{% if user.is_staff %}
{% endif %} {% endfor %} {% endif %} {% endblock %}