{% 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.battle_report }} {% if form.battle_report.errors %}
{{ form.battle_report.errors }}
{% endif %} {% if form.battle_report.help_text %} {{ form.battle_report.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 "Fleet time is automatically set to current time" %}
  • {% translate "Optionally add a battle report link" %}

{% translate "Next Steps" %}

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

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