From 8198c434512f7e48e7767c032544207b384c7d8e Mon Sep 17 00:00:00 2001 From: reverend Date: Thu, 27 Aug 2020 17:00:41 +0200 Subject: [PATCH] Adding taggit to the dependencies --- Pipfile | 2 +- lostplaces/lostplaces/settings.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index d275152..b6cd945 100644 --- a/Pipfile +++ b/Pipfile @@ -11,7 +11,7 @@ django = "*" easy-thumbnails = "*" image = "*" django-widget-tweaks = "*" -django-svg-icons = "*" +django-taggit = "*" # Commented out to not explicitly specify Python 3 subversion. # [requires] diff --git a/lostplaces/lostplaces/settings.py b/lostplaces/lostplaces/settings.py index 3e53bc4..46ffa59 100644 --- a/lostplaces/lostplaces/settings.py +++ b/lostplaces/lostplaces/settings.py @@ -43,7 +43,8 @@ INSTALLED_APPS = [ 'django.contrib.messages', 'django.contrib.staticfiles', 'easy_thumbnails', - 'widget_tweaks' + 'widget_tweaks', + 'taggit' ] MIDDLEWARE = [