summaryrefslogtreecommitdiff
path: root/tbc/templates/tbc/upload-chapters.html
blob: 2467a9d70248426135ec03783379432abe51817e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.html' %}
{% block content %}
<form action="/upload-chapters/" method=POST enctype="multipart/form-data">
{% csrf_token %}
{% for i in no_notebooks %}
<input type=text name=chapter{{i}}>
<input type=file name=notebook{{i}}>
{% endfor %}
<br>
<center><input type=submit value=submit></center>
</form>
<form action="/get-zip/" method=POST enctype="multipart/form-data">
{% csrf_token %}
<center><input type=submit value="Get Zip"></center>
</form>
{% endblock %}