20 lines
649 B
HTML
20 lines
649 B
HTML
{% extends request.content_only|yesno:"empty.html,base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post" enctype="multipart/form-data">
|
|
<div id="form-content">
|
|
<div class="alert alert-info">
|
|
<a class="alert-link" href="{% url "participation:pool_notes_template" pk=pool.pk %}">
|
|
{% trans "Download empty notation sheet" %}
|
|
</a>
|
|
</div>
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
</div>
|
|
<button class="btn btn-primary" type="submit">{% trans "Upload" %}</button>
|
|
</form>
|
|
{% endblock %}
|