{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %} {% if not deadline %}
Upload cabrillo data
{# {% crispy form %} #}
{% csrf_token %} {{ form | crispy }}

Note: On clicking save your QSOs will be saved to the database and you will have to use the log form to verify and edit your data!

Note: QSOs marked red in the verify phase will not be saved.

{% if save and not saved %}

Could not save, as your data still contains errors!

{% endif %}
{% if verifyErrors %}
    {% for error in verifyErrors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if verifyData %} {% for qso, qsoForm in verifyData %} {% endfor %}
QSO Error
{{ qso }} {{ qsoForm.errors }}
{% endif %}
{% else %}
Upload closed

The deadline for this contest has passed. Uploading cabrillo files is not possible anymore.

{% endif %} {% endblock %}