mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-20 17:52:30 +02:00
86 lines
4.1 KiB
HTML
Executable File
86 lines
4.1 KiB
HTML
Executable File
{% extends "public/base.html" %}
|
|
{% load bootstrap %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}HR Application Management{% endblock page_title %}
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
{% if perms.auth.human_resources %}
|
|
<h1 class="page-header text-center">{% trans "Application Search Results" %}
|
|
<div class="text-right">
|
|
<!-- Button trigger modal -->
|
|
<button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#myModal">
|
|
{% trans "Search Applications" %}
|
|
</button>
|
|
</div>
|
|
</h1>
|
|
<div class="container-fluid">
|
|
<table class="table table-bordered">
|
|
<tr>
|
|
<th class="text-center">{% trans "Application ID" %}</th>
|
|
<th class="text-center">{% trans "Username" %}</th>
|
|
<th class="text-center">{% trans "Main Character" %}</th>
|
|
<th class="text-center">{% trans "Corporation" %}</th>
|
|
<th class="text-center">{% trans "Status" %}</th>
|
|
<th class="text-center">{% trans "Actions" %}</th>
|
|
</tr>
|
|
{% for app in applications %}
|
|
<tr>
|
|
<td class="text-center">{{ app.id }}</td>
|
|
<td class="text-center">{{ app.user }}</td>
|
|
<td class="text-center">{{ app.main_character }}</td>
|
|
<td class="text-center">{{ app.form.corp }}</td>
|
|
<td class="text-center">
|
|
{% if app.approved == None %}
|
|
<div class="label label-warning">{% trans "Pending" %}</div>
|
|
{% elif app.approved == True %}
|
|
<div class="label label-success">{% trans "Approved" %}</div>
|
|
{% else %}
|
|
<div class="label label-danger">{% trans "Rejected" %}</div>
|
|
{% endif %}
|
|
</td>
|
|
<td class="text-center">
|
|
<a href="{% url 'auth_hrapplication_view' app.id %}" class="btn btn-primary">
|
|
<span class="glyphicon glyphicon-eye-open"></span>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if perms.auth.human_resources %}
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
|
|
aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span
|
|
class="sr-only">{% trans "Close" %}</span></button>
|
|
<h4 class="modal-title" id="myModalLabel">{% trans "Application Search" %}</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form class="form-signin" role="form"
|
|
action={% url 'auth_hrapplication_search' %} method="POST">
|
|
{% csrf_token %}
|
|
{{ search_form|bootstrap }}
|
|
<br/>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">{% trans "Search" %}</button>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock content %}
|