From 1dabf9b2c748eb4b9e7d17145bba597977bd819b Mon Sep 17 00:00:00 2001
From: Chris Li <c58li@uwaterloo.ca>
Date: Thu, 6 Apr 2023 16:02:37 -0400
Subject: [PATCH] Modify bill categories.

---
 core/models/bill.py | 16 ++++++----------
 requirements.txt    |  3 ++-
 2 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/core/models/bill.py b/core/models/bill.py
index 6d1d28d..bc2c9a1 100644
--- a/core/models/bill.py
+++ b/core/models/bill.py
@@ -72,16 +72,12 @@ class Bill(UUIDModel):
     # need confirmation
     categories = (
         (1, "Food"),
-        (2, "Groceries"),
-        (3, "Transportation"),
-        (4, "clothing"),
-        (5, "Entertainment"),
-        (6, "Bill"),
-        (7, "Sports"),
-        (8, "Electronics"),
-        (9, "Travel"),
-        (10, "House & Car"),
-        (11, "Others")
+        (2, "Transportation"),
+        (3, "Shopping"),
+        (4, "Entertainment"),
+        (5, "Housing"),
+        (6, "Utilities"),
+        (7, "Other")
     )
 
 
diff --git a/requirements.txt b/requirements.txt
index d88b30b..975aa53 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -8,4 +8,5 @@ djangorestframework==3.14.0
 knox==0.1.14
 PyJWT==2.6.0
 requests==2.28.2
-python-dateutil
\ No newline at end of file
+python-dateutil
+whitenoise
\ No newline at end of file
-- 
GitLab