{% extends "fitcheck/base.html" %} {% load i18n %} {% load static %} {% block fitcheck_css %} {% endblock %} {% block fitcheck_content %}
{% if mode == "direct" %}{% translate "Direct Creation" %}{% else %}{% translate "Guided Creation" %}{% endif %}
{% if form.errors %}
{% for field in form %}{% for error in field.errors %}
{{ field.label }}: {{ error }}
{% endfor %}{% endfor %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% csrf_token %} {% if mode != "direct" %}
{% endif %}
{% translate "Name the Doctrine" %}
{{ form.name }}
{{ form.description }}
{% translate "Pick a Doctrine Image" %}

{% translate "Search any EVE ship - its render becomes the doctrine's card image." %}

{{ form.image_type_id }}
{% translate "Categories and Visibility" %}
{% translate "Categories show on the doctrine and its fittings, drive who can see them (by Auth group), and members can filter by them." %}
{{ form.categories }}
{% translate "Set each category's visibility groups on the" %} {% translate "Manage categories" %} {% translate "page." %}
{{ form.is_active }}
{% if mode != "direct" %}
{% translate "Review" %}

{% translate "After creating the doctrine you can assign existing fittings or import new ones right from its page." %}

{% translate "Cancel" %}
{% else %}
{% translate "Cancel" %}
{% endif %}
{% endblock %} {% block extra_javascript %} {% endblock %}