You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_django/templates/employee/line-update.html

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="Update line">
</form>
{% endblock content %}