dasaproject/django/Customer/templates/Customer/addedit.html
2023-09-27 15:49:36 +07:00

12 lines
335 B
HTML

{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% block title %}{{title}}{% endblock title %}
{% block body %}
<form method="POST" action="">
{% csrf_token %}
{{form|crispy}}
{% comment %} {{form.CustomerName|as_crispy_field}} {% endcomment %}
<button type="submit">submit</button>
</form>
{% endblock body %}