{% extends "minecraft_manager/dashboard.html" %} {% load csrf_html %} {% load reverse_player %} {% block title %}Note Info{% endblock %} {% block section %}

Note Info ({% player_reverse_id note.player.id %})

Message:

{{ note.message }}

Note Date: {{ note.date }}

{% autoescape off %}{% get_csrf_html request %}{% endautoescape %}

Issuer: {{ note.staff.username }}

{% if user.is_staff or user == note.staff %} {% else %} {{ note.importance_display }} {% endif %}

{% if user.is_staff or note.staff and user == note.staff %} {% endif %}
{% if note.attachments.all|length > 0 %}
{% for attachment in note.attachments %} {% endfor %}
Attachments
{{ attachment.file_name }}
{% endif %}
{% include 'minecraft_manager/modal/add_attachment.html' %} {% include 'minecraft_manager/modal/delete_attachment.html' %} {% endblock section %}