Files
allianceauth/stock/templates/registered/hrapplicationcorpchoice.html
2017-03-23 22:54:25 -04:00

28 lines
1.1 KiB
HTML

{% extends "registered/base.html" %}
{% load staticfiles %}
{% load i18n %}
{% block title %}Choose a Corp{% endblock %}
{% block page_title %}{% trans "Choose a Corp" %}{% endblock page_title %}
{% block content %}
<div class="col-lg-12">
<h1 class="page-header text-center">{% trans "Choose a Corp" %}</h1>
{% if choices %}
<div class="panel panel-primary">
<div class="panel-heading">{% trans "Available Corps" %}</div>
<table class="table table-responsive">
{% for choice in choices %}
<tr>
<td class="text-center">
<a href="{% url 'auth_hrapplication_create_view' choice.0 %}" class="btn btn-primary" title="Apply">{{ choice.1 }}</a>
</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
<div class="alert alert-danger">{% trans "No corps are accepting applications at this time." %}</div>
{% endif %}
</div>
{% endblock content %}