Add Bulma to settings
This commit is contained in:
parent
5b77858c78
commit
67ea926c96
|
@ -39,8 +39,10 @@ INSTALLED_APPS = [
|
|||
"django.contrib.staticfiles",
|
||||
"core",
|
||||
"crispy_forms",
|
||||
"crispy_bulma",
|
||||
]
|
||||
CRISPY_TEMPLATE_PACK = "bootstrap4"
|
||||
CRISPY_TEMPLATE_PACK = "bulma"
|
||||
CRISPY_ALLOWED_TEMPLATE_PACKS = ("bulma",)
|
||||
|
||||
MIDDLEWARE = [
|
||||
"django.middleware.security.SecurityMiddleware",
|
||||
|
|
|
@ -26,7 +26,7 @@ urlpatterns = [
|
|||
path("", Home.as_view(), name="home"),
|
||||
path("callback", Callback.as_view(), name="callback"),
|
||||
path("billing/", Billing.as_view(), name="billing"),
|
||||
path("order/<str:product_id>/", Order.as_view(), name="order"),
|
||||
path("order/<str:plan_name>/", Order.as_view(), name="order"),
|
||||
path(
|
||||
"success/", TemplateView.as_view(template_name="success.html"), name="success"
|
||||
),
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
django
|
||||
pre-commit
|
||||
django-crispy-forms
|
||||
crispy-bulma
|
||||
opensearch-py
|
||||
stripe
|
||||
django-rest-framework
|
||||
|
|
Loading…
Reference in New Issue