{% extends "rank_management_base.html" %} {% block rank_management %} {%- from theme('_macros/form.html') import action_confirm -%}
{% trans %}Name{% endtrans %}
{% trans %}Display{% endtrans %}
{% trans %}Requirement{% endtrans %}
{% trans %}Actions{% endtrans %}
{% for rank in ranks %}
{{ rank.rank_code|nonpost_markup }}
{% if rank.is_custom() %}{% trans %}Custom{% endtrans %}{% else %}{{ rank.requirement }}{% endif %}
{% if rank.is_custom() %} {% endif %} {{ action_confirm( id="delete-" ~ rank.id, url=url_for('ranks_management.delete_rank', rank_id=rank.id), title=_("Delete"), icon="far fa-trash-alt text-danger" ) }}
{% else %}
{% trans %}No ranks found.{% endtrans %}
{% endfor %}
{% include theme('_partials/confirm_dialog.html') %} {% endblock %}