django-web-galleries/django_web_galleries/web_galleries/templates/visitor/visitor_settings.html

13 lines
325 B
HTML

{% extends '../global.html' %}
{% block content %}
<form method="POST">
{% csrf_token %}
<div class="RV-Fieldset">
{% include 'partials/form_input.html' with field=name_form.name %}
</div>
<div class="RV-Fieldset">
<button type="submit">Save</button>
</div>
</form>
{% endblock content %}