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

Commit f27719e

Browse files
authored
Create companies_form.html
1 parent e139f10 commit f27719e

File tree

1 file changed

+11
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)