From 2774d15378d2636f911f3220b525aea3daf4bf3e Mon Sep 17 00:00:00 2001 From: sosokker Date: Sun, 19 Nov 2023 02:31:01 +0700 Subject: [PATCH] Install django_filters --- core/settings.py | 1 + requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/settings.py b/core/settings.py index 019a7da..e110366 100644 --- a/core/settings.py +++ b/core/settings.py @@ -34,6 +34,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'django_filters', 'inventory', 'transaction', ] diff --git a/requirements.txt b/requirements.txt index 56113b9..0ace566 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ Django>=4.2.6 psycopg>=3.1.12 psycopg-binary>=3.1.12 -python-decouple>=3.8 \ No newline at end of file +python-decouple>=3.8 +django-filter>=23.3 \ No newline at end of file