{% extends 'autosrp/base.html' %} {% load i18n humanize tz %} {% block content %}

{% trans "My SRP Submissions" %}

{% trans "New Submission" %}
{% for s in object_list %} {% empty %} {% endfor %}
{% trans "ID" %} {% trans "Doctrine" %} {% trans "Fit Mode" %} {% trans "Start (UTC)" %} {% trans "Duration (m)" %} {% trans "Systems" %} {% trans "Status" %}
#{{ s.id }}
{% if s.doctrine_name %} {{ s.doctrine_name }} {% else %} {% trans "Doctrine" %} {{ s.doctrine_id }} {% endif %} {% if s.strict_mode %}{% trans "Strict" %}{% else %}{% trans "Loose" %}{% endif %} {% timezone "UTC" %}{{ s.start_at|date:"Y-m-d H:i:s T" }}{% endtimezone %} {{ s.duration_minutes|default:"—" }} {% if s.system_names %} {{ s.system_names|join:", " }} {% elif s.systems %} {{ s.systems|join:", " }} {% else %} — {% endif %} {{ s.status|default:"unknown" }} {% trans "Open" %}
{% trans "No submissions." %}
{% endblock %}