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:
- - Django 2.2.7 : pip install Django==2.2.7
+ - Django 5.2.3 : pip install Django==5.2.3
- django-crispy-forms : pip install django-crispy-forms
- Pillow : pip install Pillow
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