{% extends "autosrp/base.html" %} {% load static %} {% block title %}New Submission{% endblock %} {% block content %}

Create SRP Submission

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
Automatic Submission
{{ form.battle_report_url }} {% if form.battle_report_url.help_text %}
{{ form.battle_report_url.help_text }}
{% endif %} {% if form.battle_report_url.errors %}
{{ form.battle_report_url.errors }}
{% endif %}
Paste a zKill “related” link or an EVE Tools BR link to auto-fill systems and times. For zKill “related” URLs, you can adjust the time window above (default 2 hours).
Using the EVE Tools BR link will not work if the BR is not public. The EVE Tools BR is a beta feature and may result in unexpected behavior.
Manual Submission
Choose a system and click Add to append its numeric ID to the Systems field.
{{ form.systems }} {% if form.systems.help_text %}
{{ form.systems.help_text }}
{% endif %} {% if form.systems.errors %}
{{ form.systems.errors }}
{% endif %}
{{ form.start_at }} {% if form.start_at.help_text %}
{{ form.start_at.help_text }}
{% endif %} {% if form.start_at.errors %}
{{ form.start_at.errors }}
{% endif %}
{{ form.end_at }} {% if form.end_at.help_text %}
{{ form.end_at.help_text }}
{% endif %} {% if form.end_at.errors %}
{{ form.end_at.errors }}
{% endif %}
{{ form.strict_mode }}
If enabled, the exact item is checked, meta-variants are not allowed.
{% if form.strict_mode.errors %}
{{ form.strict_mode.errors }}
{% endif %}
{{ form.org_filter }} {% if form.org_filter.errors %}
{{ form.org_filter.errors }}
{% endif %}
{{ form.doctrine_id }} {% if form.doctrine_id.help_text %}
{{ form.doctrine_id.help_text }}
{% endif %} {% if form.doctrine_id.errors %}
{{ form.doctrine_id.errors }}
{% endif %}
Cancel
{% endblock %}