{% extends "public/base.html" %} {% load staticfiles %} {% load bootstrap %} {% block title %}Alliance Auth - View Application{% endblock %} {% block page_title %}View Application{% endblock page_title %} {% block extra_css %}{% endblock extra_css %} {% block content %}

View Application

{% if app.approved %}
Approved
{% elif app.approved == False %}
Denied
{% else %}
Pending
{% endif %} {% if app.reviewer_str %}
Reviewer: {{ app.reviewer_str }}
{% endif %} {% for response in responses %}
{{ response.question.title }}
{{ response.answer }}
{% endfor %}
{% if buttons %} {% if perms.auth.human_resources %}
Actions
{% if app.approved == None %} {% if app.reviewer == user %} {% if perms.hrapplications.approve_application %} Approve {% endif %} {% if perms.hrapplications.reject_application %} Reject {% endif %} {% if perms.hrapplications.delete_application %} Delete {% endif %} {% elif not app.reviewer %} Mark in Progress {% endif %} {% endif %} {% if perms.hrapplications.add_applicationcomment %} {% endif %} {% if perms.hrapplications.view_apis %} {% for api in apis %} API {{ api.api_id }} {% endfor %} {% endif %}
{% for comment in comments %}
{{ comment.text }}
{% endfor %}
{% endif %} {% endif %}
{% if perms.hrapplications.add_applicationcomment %} {% endif %} {% endblock %}