mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 22:59:30 +00:00
47 lines
978 B
HTML
47 lines
978 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HR{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<H1>HR</H1>
|
|
</div>
|
|
|
|
<h3>Applications</h3>
|
|
<p>
|
|
<ul>
|
|
<li><a href="{% url hr-userapplications %}">View your current open applications</a></li>
|
|
<li><a href="{% url hr-addapplication %}">Create a application</a></li>
|
|
</ul>
|
|
</p>
|
|
|
|
{% if can_recommend %}
|
|
<h3>Recommendations</h3>
|
|
<p>
|
|
<ul>
|
|
<li><a href="{% url hr-viewrecommendations %}">View your current open recommendations</a></li>
|
|
<li><a href="{% url hr-addrecommendation %}">Add a recommendation</a></li>
|
|
</ul>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% if is_hr_staff %}
|
|
<h3>HR Admin</h3>
|
|
<p>
|
|
<ul>
|
|
<li><a href="{% url hr-admin %}">View applications</a></li>
|
|
</ul>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% if perms.hr.add_blacklist %}
|
|
<h3>Blacklist Management</h3>
|
|
<p>
|
|
<ul>
|
|
<li><a href="{% url hr-blacklist-list %}">View/Search Blacklist</a></li>
|
|
<li><a href="{% url hr-blacklist-add %}">Add Blacklist Entry</a></li>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|