24 lines
555 B
HTML
24 lines
555 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<form action="{% url 'person:add' %}" method="post">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<!-- TO IMPLEMENT -->
|
|
<legend>Person</legend>
|
|
{{ person_form }}
|
|
|
|
</fieldset>
|
|
<fieldset>
|
|
<em>Leave blank if missing</em>
|
|
{{ address_form }}
|
|
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Employee at</legend>
|
|
<em>Empty job means that this is no employee</em>
|
|
{{ employee_form }}
|
|
</fieldset>
|
|
<input type="submit" value="add"/>
|
|
</form>
|
|
{% endblock %}
|