{% extends "client/base.html" %} {% load i18n %} {% load admin_urls %} {% load rules %} {% block title %} {{client}} - {% trans "Information" %} {% endblock %} {% block subcontent %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %}

{% trans 'Staff Notes' %}
{% trans "Notes added to" %} {{client}}'{% trans "s file" %}.

{{ filter.form.priority }}
{{ filter.form.is_read }}
{% trans "Reset" %} {% if can_edit_data %} {% trans "New Note" %} {% endif %}
{% for note in notes %} {% endfor %}
{% if note.priority == 'urgent' %} {% else %} {{note.category}} {% endif %} {{note.date}}
{{ note.note }}
{% trans 'Created by' %} {{note.author}}
{% if note.is_read %} {% else %} {% endif %}
{% csrf_token %} {% for note in notes %} {% if not note.is_read %} {% endif %} {% endfor %}
{% csrf_token %}
{% endblock %}