{% extends 'aapayout/base.html' %} {% load i18n %} {% block details %}

{% translate "Create New Fleet" %}

{% translate "Fleet Information" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %} {% if form.name.help_text %} {{ form.name.help_text }} {% endif %}
{{ form.doctrine }} {% if form.doctrine.errors %}
{{ form.doctrine.errors }}
{% endif %} {% if form.doctrine.help_text %} {{ form.doctrine.help_text }} {% endif %}
{{ form.location }} {% if form.location.errors %}
{{ form.location.errors }}
{% endif %} {% if form.location.help_text %} {{ form.location.help_text }} {% endif %}
{{ form.fleet_time }} {% if form.fleet_time.errors %}
{{ form.fleet_time.errors }}
{% endif %} {% if form.fleet_time.help_text %} {{ form.fleet_time.help_text }} {% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %} {% if form.notes.help_text %} {{ form.notes.help_text }} {% endif %}
{% translate "Cancel" %}
{% translate "Tips" %}
{% translate "Creating a Fleet" %}
  • {% translate "Provide a clear fleet name" %}
  • {% translate "Specify the doctrine if applicable" %}
  • {% translate "Include the location (system, region, etc.)" %}
  • {% translate "Set the correct fleet time" %}

{% translate "Next Steps" %}

{% translate "After creating the fleet, you can:" %}

  • {% translate "Add participants" %}
  • {% translate "Create loot pools" %}
  • {% translate "Generate payouts" %}
{% endblock %}