friendsmap/map/templates/map/change_location.html

13 lines
304 B
HTML

{% extends 'map/base.html' %}
{% load crispy_forms_filters %}
{% block h1 %}Change your location{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary">Save</button>
</form>
{% endblock %}