[Answered ]-Templates hmtl in view

1👍

I believe you can change this in your urls.py like the following:

urls.py

urlpatterns = [
    path("your_url", views.DieeCreateView.as_view(template_name="your_template_name.html")),
    path("your_other_url", views.DieeCreateView.as_view(template_name="your_other_template.html"))
]

Leave a comment