{% extends "closedverse_main/layout.html" %} {% block main-body %}{% load closedverse_user %}{% load closedverse_tags %} {% user_sidebar request user profile 8 False %}

Send a warning to {{ user.username }}

  • Reasoning:

    {{ form.reason }}

    Warnings will show as notifications. {{ user.username }} will not be able to post, comment, or message another user until this notification is seen. {{ user.username }} will not see who sent this warning.

  • {% if unread_warnings %}
  • Warnings that have not been read yet:

    {% for Notifications in unread_warnings %} {% endfor %}
    Time Incident
    {{ Notifications.created }} {{ Notifications.context_warning.reason }}
    {% endif %}

  • {% if all_warnings %}

    Incident history:

    {% for Warning in all_warnings %} {% endfor %}
    Time Issued by Incident
    {{ Warning.created }} {{ Warning.by }} {{ Warning.reason }}
    {% endif %}

    {% csrf_token %}
    {% endblock %}