18 lines
675 B
HTML
18 lines
675 B
HTML
{% extends '../global.html' %}
|
|
|
|
{% block content %}
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div class="RV-Fieldset">
|
|
{% include 'partials/form_input.html' with field=form.title %}
|
|
{% include 'partials/form_input.html' with field=form.image_file %}
|
|
{% include 'partials/form_input.html' with field=form.description %}
|
|
{% include 'partials/form_input.html' with field=form.private classes='RV-Input--compact RV-Input--reverse' %}
|
|
|
|
</div>
|
|
<div class="RV-Fieldset">
|
|
<button type="submit">Upload</button>
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|