{% extends "fleettools/base.html" %} {% load django_bootstrap5 %} {% load static %} {% block page_title %}Fleet Mover{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block fleettoolscontent %}
{% if reset_buttons|length > 0 %}
Reset Wings
{% for line in reset_buttons %}
{% for button in line %} {{ button.text }} {% endfor %}
{% endfor %}
{% endif %}
{% csrf_token %}
    • {% for wing in fleet %}
      • {% for squad in wing.squads %}
      • {% endfor %}
    • {% endfor %}
{% bootstrap_form destination_form %}
{% endblock fleettoolscontent %} {% block extra_javascript %} {% endblock extra_javascript %} {% block extra_script %} $(document).ready(function() { $('[data-bs-toggle="tooltip"]').tooltip(); }); {% endblock extra_script %}