2022-12-27 22:09:10 +01:00
|
|
|
{% extends '../global.html' %}
|
|
|
|
|
2022-12-29 21:31:11 +01:00
|
|
|
{% load i18n %}
|
|
|
|
|
2022-12-27 22:09:10 +01:00
|
|
|
{% 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.private classes='RV-Input--compact RV-Input--reverse' %}
|
|
|
|
{% include 'partials/form_input.html' with field=form.images %}
|
|
|
|
</div>
|
|
|
|
<div class="RV-Fieldset">
|
2022-12-29 21:31:11 +01:00
|
|
|
<button type="submit">{% translate 'Create' %}</button>
|
2022-12-27 22:09:10 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|