মডিউল ৫-৪ঃ জ্যাংগোতে Crispy Form যুক্ত করা
pip install crispy-bootstrap5


Last updated
pip install crispy-bootstrap5


Last updated
"crispy_forms",
"crispy_bootstrap5",CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
CRISPY_TEMPLATE_PACK = "bootstrap5"{% extends 'base.html '%}
{% block content %}
{% load crispy_forms_tags %}
<form method="post" style="width: 50%; height: 500px; margin:auto;" class="pt-4">
{% csrf_token %}
{{form|crispy}}
<button type="submit" class="btn btn-primary mt-2">Submit</button>
</form>
{%endblock%}