Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit d4672f2

Browse files
authored
Create locations_form.html
1 parent c1a3e99 commit d4672f2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{% extends 'base.html' %}
2+
{% block content %}
3+
<form method="POST">
4+
{% csrf_token %}
5+
{% for field in form %}
6+
{{ field.label }} {{ field }}<br>
7+
{% endfor %}
8+
<button type="submit">Salveaza</button>
9+
</form>
10+
{% endblock %}

0 commit comments

Comments
 (0)