diff --git a/README.md b/README.md index e114314..06ee8f0 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A simple Blog Application using Django

Additional Python Modules Required:

diff --git a/blog/templates/blog/base.html b/blog/templates/blog/base.html index 4159224..739eabe 100644 --- a/blog/templates/blog/base.html +++ b/blog/templates/blog/base.html @@ -1,4 +1,4 @@ -{% load staticfiles %} +{% load static %} diff --git a/django_blog/settings.py b/django_blog/settings.py index f47964f..b3f9cb2 100644 --- a/django_blog/settings.py +++ b/django_blog/settings.py @@ -1,7 +1,7 @@ """ Django settings for django_blog project. -Generated by 'django-admin startproject' using Django 2.2.7. +Generated by 'django-admin startproject' using Django 5.2.3. For more information on this file, see https://docs.djangoproject.com/en/2.2/topics/settings/ @@ -40,6 +40,7 @@ 'blog.apps.BlogConfig', 'users.apps.UsersConfig', 'crispy_forms', + "crispy_bootstrap4", ] MIDDLEWARE = [ @@ -71,6 +72,8 @@ ] WSGI_APPLICATION = 'django_blog.wsgi.application' +CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap4" +CRISPY_TEMPLATE_PACK = "bootstrap4" # Database