{% extends "base/base.html" %} {% load static %} {% block title %} Solution source pdfs {% endblock title %} {% block page_heading %} Solution source pdfs {% endblock page_heading %} {% block main_content %}
Return to solutions page

You have uploaded {{ number_of_soln_pdfs }} of {{ versions }} source pdfs {% if number_of_soln_pdfs == versions %}{% endif %}

{% if dupes_warning %}

Warning: duplicate files detected. Please double-checked whether you have uploaded the correct solution files: perhaps you uploaded the same file twice?

{% endif %}

Note that deleting a solution source pdf will invalidate any built solution pdfs.

{% for soln in soln_sources %}
{% if soln.uploaded %}
PDF for version {{ soln.version }} uploaded

sha256: {{ soln.hash }}
original filename: {{ soln.original_filename }}

View  
{% else %}
Upload solution PDF for version {{ soln.version }}
{% csrf_token %}
{% endif %}
{% endfor %}
{% endblock main_content %}