Files
depot_django/templates/employee/line-create.html
T
2025-07-15 20:47:58 +03:00

10 lines
244 B
HTML

{% extends 'client-base.html' %}
{% load static %}
{% block content %}
<form id="lineForm" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Create line">
</form>
{% endblock content %}