{% load i18n static %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{{cand}}'s {% trans "Notes" %}
{% csrf_token %}
{% if notes %}
    {% for note in notes %}
  1. {{ note.description }}
    {% for file in note.stage_files.all %} {% endfor %}
    {% csrf_token %}
    {% trans 'by' %} {{ note.updated_by }} @ {{note.stage_id }} {% trans "stage" %}
  2. {% endfor %}
{% else %}
{% trans "No notes have been added for this candidate" %}
{% endif %}