{% extends "allianceauth/base-bs5.html" %} {% load django_bootstrap5 %} {% load i18n %} {% block page_title %} {% translate "Apply To" %} {{ corp.corporation_name }} {% endblock page_title %} {% block header_nav_brand %} {% translate "HR Application Management" %} {% endblock header_nav_brand %} {% block content %}

{% translate "Apply To" %} {{ corp.corporation_name }}

{% translate "Application form" %}
{% csrf_token %} {% for question in questions %}
{{ question.title }}
{% if question.help_text %}

{{ question.help_text }}

{% endif %} {% for choice in question.choices.all %}
{% empty %} {% endfor %}
{% endfor %}
{% translate "Submit" as button_text %} {% bootstrap_button button_class="btn btn-primary" content=button_text name="submitApplicationForm" id="submitApplicationForm" %}
{% endblock %}