{% extends "finaid/base.html" %} {% block body_id %}finaid_review{% endblock %} {% block page_title %}Financial Aid Review{% endblock %} {% load compress %} {% load i18n %} {% load bootstrap_tags %} {% load account_tags %} {% load review_tags %} {% block body %}

Back to list of applications

APPLICANT

{{ application.user }}

{{ application.user.email }}

{% with is_reviewer=True %} {% include "finaid/_application_fields.html" %} {% endwith %}

REVIEW FORM


{% with form=review_form %} {% if form.errors %}

There were errors in your form, please correct them and submit again." %}

{% endif %}
{% csrf_token %}
{{ form|as_bootstrap }}
{% endwith %}
{% if review_messages %}

Messages

{% for message in review_messages %}
{% if not message.visible %}

PRIVATE TO REVIEWERS

{% endif %} {% user_display message.user %} {{ message.submitted_at|timesince }} ago
{{ message.message|bleach|safe }}
{% endfor %} {% else %} No messages {% endif %}

Add a Message

{% with form=message_form %} {% if form.errors %}

There were errors in your form, please correct them and submit again.

{% endif %}
{% csrf_token %}
{{ form|as_bootstrap }}
{% endwith %}
{#
#} {# #} {#
#}
{% endblock %} {% block extra_script %} {% compress js %} {% endcompress %} {% endblock %}