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

Commit 8589a8c

Browse files
authored
Create jobs_form.html
1 parent 43bd53d commit 8589a8c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends 'base.html' %}
2+
{% block content %}
3+
<form method="POST">
4+
{% csrf_token %}
5+
<div class="col-md-10">
6+
{% for field in form %}
7+
<div class="col-md-10">
8+
{{ field.label }}
9+
<div class="col-md-20">
10+
{{ field }}<br>
11+
12+
</div>
13+
</div>
14+
{% endfor %}
15+
</div>
16+
<div>
17+
<button type="submit">Salveaza</button>
18+
</div>
19+
</form>
20+
{% endblock %}

0 commit comments

Comments
 (0)