{% extends "base.html" %}{% block content %}

HR Requests & Notices

Your applications, decisions and active management notices in one place
{% if can_submit_employee_request %}Submit Application{% endif %}{% if can_publish_notice %}Publish Notice{% endif %}

Management Notices

Only notices addressed to you are shown
{% for x in notices %}
{{ x.notice.publish_from|date:"Y-m-d H:i" }} · {% if x.read_at %}Read{% else %}New{% endif %}{{ x.notice.title }}
{{ x.notice.message }}
{% if not x.read_at %}
{% csrf_token %}
{% endif %}
{% empty %}
No active management notice for you.
{% endfor %}

My Applications

Application status and HR/Manager response
{% for x in items %}{% empty %}{% endfor %}
ReferenceTypeSubjectStatusResponseDateAction
{{ x.reference }}{{ x.type }}{{ x.subject }}{{ x.status }}{{ x.response|default:"—" }}{{ x.created_at|date:"Y-m-d H:i" }}{% if x.resubmit_url %}Correct & Resubmit{% else %}—{% endif %}
No applications.
{% endblock %}