15 lines
349 B
HTML
15 lines
349 B
HTML
{% extends 'main/header.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Upload Books</h2>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="btn waves-effect waves-light" type="submit" name="action">upload file
|
|
<i class="material-icons right">send</i>
|
|
</button>
|
|
</form>
|
|
|
|
{% endblock %}
|