mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-11 16:52:37 +07:00
12 lines
335 B
HTML
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 %} |