From ab7373fc34979617549dc4c7fa1d76c952f88bd5 Mon Sep 17 00:00:00 2001 From: Gokuldevx Date: Mon, 2 Feb 2026 10:52:20 +0530 Subject: [PATCH] initial commit --- .gitignore | 4 ++-- civicfix/Procfile => Procfile | 0 civicfix/.env | 10 ---------- civicfix/.gitignore | 2 -- civicfix/{civicfix => }/__init__.py | 0 civicfix/__pycache__/__init__.cpython-313.pyc | Bin 0 -> 139 bytes .../__pycache__/settings.cpython-313.pyc | Bin 3558 -> 3555 bytes .../__pycache__/urls.cpython-313.pyc | Bin 1192 -> 1189 bytes .../__pycache__/wsgi.cpython-313.pyc | Bin civicfix/{civicfix => }/asgi.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin 142 -> 0 bytes .../core/__pycache__/__init__.cpython-313.pyc | Bin 138 -> 0 bytes .../__pycache__/__init__.cpython-313.pyc | Bin 149 -> 0 bytes .../__pycache__/__init__.cpython-313.pyc | Bin 151 -> 0 bytes civicfix/{civicfix => }/settings.py | 0 civicfix/{civicfix => }/urls.py | 0 civicfix/{civicfix => }/wsgi.py | 0 {civicfix/core => core}/__init__.py | 0 core/__pycache__/__init__.cpython-313.pyc | Bin 0 -> 135 bytes .../__pycache__/admin.cpython-313.pyc | Bin 1185 -> 1182 bytes .../__pycache__/apps.cpython-313.pyc | Bin 615 -> 612 bytes .../__pycache__/forms.cpython-313.pyc | Bin 3378 -> 3375 bytes .../__pycache__/models.cpython-313.pyc | Bin 8986 -> 8983 bytes .../__pycache__/urls.cpython-313.pyc | Bin 2592 -> 2589 bytes .../__pycache__/views.cpython-313.pyc | Bin 21702 -> 21699 bytes {civicfix/core => core}/admin.py | 0 {civicfix/core => core}/apps.py | 0 {civicfix/core => core}/forms.py | 0 .../management/commands/initadmin.py | 0 .../core => core}/migrations/0001_initial.py | 0 .../0002_user_banned_until_user_is_banned.py | 0 .../core => core}/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-313.pyc | Bin 7994 -> 7991 bytes ...lter_user_user_permissions.cpython-313.pyc | Bin ...anned_until_user_is_banned.cpython-313.pyc | Bin 915 -> 912 bytes .../__pycache__/0002_vote.cpython-313.pyc | Bin ...lter_user_user_permissions.cpython-313.pyc | Bin .../__pycache__/0003_comment.cpython-313.pyc | Bin ...lter_user_user_permissions.cpython-313.pyc | Bin ...artment_alter_comment_user.cpython-313.pyc | Bin .../0005_department_users.cpython-313.pyc | Bin ...ent_users_department_admin.cpython-313.pyc | Bin .../0007_department_users.cpython-313.pyc | Bin ...er_issue_category_and_more.cpython-313.pyc | Bin .../0009_issue_department.cpython-313.pyc | Bin ...egory_delete_issuecategory.cpython-313.pyc | Bin .../0011_delete_issuecategory.cpython-313.pyc | Bin ...suecategory_issue_category.cpython-313.pyc | Bin .../__pycache__/__init__.cpython-313.pyc | Bin 0 -> 146 bytes {civicfix/core => core}/models.py | 0 .../core => core}/templates/core/base.html | 0 .../core => core}/templates/core/index.html | 0 .../core => core}/templates/core/login.html | 0 .../templates/core/manage_users.html | 0 .../templates/core/register.html | 0 .../templates/core/superadmin_reports.html | 0 .../dashboard/citizen_dashboard.html | 0 .../dashboard/department_dashboard.html | 0 .../dashboard/superadmin_dashboard.html | 0 .../department/department_detail.html | 0 .../department/manage_departments.html | 0 .../templates/issues/issue_detail.html | 0 .../templates/issues/manage_issues.html | 0 .../templates/issues/view_all_issues.html | 0 .../core => core}/templatetags/__init__.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin 0 -> 148 bytes .../custom_filters.cpython-313.pyc | Bin 669 -> 666 bytes .../templatetags/custom_filters.py | 0 {civicfix/core => core}/tests.py | 0 {civicfix/core => core}/urls.py | 0 {civicfix/core => core}/views.py | 0 civicfix/manage.py => manage.py | 0 civicfix/requirements.txt => requirements.txt | 0 73 files changed, 2 insertions(+), 14 deletions(-) rename civicfix/Procfile => Procfile (100%) delete mode 100644 civicfix/.env delete mode 100644 civicfix/.gitignore rename civicfix/{civicfix => }/__init__.py (100%) create mode 100644 civicfix/__pycache__/__init__.cpython-313.pyc rename civicfix/{civicfix => }/__pycache__/settings.cpython-313.pyc (93%) rename civicfix/{civicfix => }/__pycache__/urls.cpython-313.pyc (70%) rename civicfix/{civicfix => }/__pycache__/wsgi.cpython-313.pyc (100%) rename civicfix/{civicfix => }/asgi.py (100%) delete mode 100644 civicfix/civicfix/__pycache__/__init__.cpython-313.pyc delete mode 100644 civicfix/core/__pycache__/__init__.cpython-313.pyc delete mode 100644 civicfix/core/migrations/__pycache__/__init__.cpython-313.pyc delete mode 100644 civicfix/core/templatetags/__pycache__/__init__.cpython-313.pyc rename civicfix/{civicfix => }/settings.py (100%) rename civicfix/{civicfix => }/urls.py (100%) rename civicfix/{civicfix => }/wsgi.py (100%) rename {civicfix/core => core}/__init__.py (100%) create mode 100644 core/__pycache__/__init__.cpython-313.pyc rename {civicfix/core => core}/__pycache__/admin.cpython-313.pyc (84%) rename {civicfix/core => core}/__pycache__/apps.cpython-313.pyc (66%) rename {civicfix/core => core}/__pycache__/forms.cpython-313.pyc (86%) rename {civicfix/core => core}/__pycache__/models.cpython-313.pyc (96%) rename {civicfix/core => core}/__pycache__/urls.cpython-313.pyc (74%) rename {civicfix/core => core}/__pycache__/views.cpython-313.pyc (98%) rename {civicfix/core => core}/admin.py (100%) rename {civicfix/core => core}/apps.py (100%) rename {civicfix/core => core}/forms.py (100%) rename {civicfix/core => core}/management/commands/initadmin.py (100%) rename {civicfix/core => core}/migrations/0001_initial.py (100%) rename {civicfix/core => core}/migrations/0002_user_banned_until_user_is_banned.py (100%) rename {civicfix/core => core}/migrations/__init__.py (100%) rename {civicfix/core => core}/migrations/__pycache__/0001_initial.cpython-313.pyc (97%) rename {civicfix/core => core}/migrations/__pycache__/0002_alter_user_groups_alter_user_user_permissions.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0002_user_banned_until_user_is_banned.cpython-313.pyc (78%) rename {civicfix/core => core}/migrations/__pycache__/0002_vote.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0003_comment.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0005_department_users.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0007_department_users.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0009_issue_department.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc (100%) rename {civicfix/core => core}/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc (100%) create mode 100644 core/migrations/__pycache__/__init__.cpython-313.pyc rename {civicfix/core => core}/models.py (100%) rename {civicfix/core => core}/templates/core/base.html (100%) rename {civicfix/core => core}/templates/core/index.html (100%) rename {civicfix/core => core}/templates/core/login.html (100%) rename {civicfix/core => core}/templates/core/manage_users.html (100%) rename {civicfix/core => core}/templates/core/register.html (100%) rename {civicfix/core => core}/templates/core/superadmin_reports.html (100%) rename {civicfix/core => core}/templates/dashboard/citizen_dashboard.html (100%) rename {civicfix/core => core}/templates/dashboard/department_dashboard.html (100%) rename {civicfix/core => core}/templates/dashboard/superadmin_dashboard.html (100%) rename {civicfix/core => core}/templates/department/department_detail.html (100%) rename {civicfix/core => core}/templates/department/manage_departments.html (100%) rename {civicfix/core => core}/templates/issues/issue_detail.html (100%) rename {civicfix/core => core}/templates/issues/manage_issues.html (100%) rename {civicfix/core => core}/templates/issues/view_all_issues.html (100%) rename {civicfix/core => core}/templatetags/__init__.py (100%) create mode 100644 core/templatetags/__pycache__/__init__.cpython-313.pyc rename {civicfix/core => core}/templatetags/__pycache__/custom_filters.cpython-313.pyc (73%) rename {civicfix/core => core}/templatetags/custom_filters.py (100%) rename {civicfix/core => core}/tests.py (100%) rename {civicfix/core => core}/urls.py (100%) rename {civicfix/core => core}/views.py (100%) rename civicfix/manage.py => manage.py (100%) rename civicfix/requirements.txt => requirements.txt (100%) diff --git a/.gitignore b/.gitignore index 13d15e2..ade89e4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -civicenv -civicProject.code-workspace \ No newline at end of file +.env +issue_photos/ \ No newline at end of file diff --git a/civicfix/Procfile b/Procfile similarity index 100% rename from civicfix/Procfile rename to Procfile diff --git a/civicfix/.env b/civicfix/.env deleted file mode 100644 index 4eef742..0000000 --- a/civicfix/.env +++ /dev/null @@ -1,10 +0,0 @@ -SECRET_KEY="django-insecure-wa6p9d+go#+evjql%m(+e5eti$%z7yx2o#cbq8bsh!==icxua3" -DEBUG="False" -CLOUD_NAME="dkxbfoesf" -API_KEY="658671916285379" -API_SECRET="_CwNDj4L2dE9yH90Ynj7slPlbo0" -CLOUDINARY_URL="cloudinary://658671916285379:_CwNDj4L2dE9yH90Ynj7slPlbo0@dkxbfoesf" -DATABASE_URL="postgresql://civicfix_user:YG56PWj9Xj1DvYIKF35TKmIEjrsfis6d@dpg-d2mpapripnbc73f5vaj0-a.oregon-postgres.render.com/civicfix" -SUPERUSER_USERNAME="admin" -SUPERUSER_PASSWORD="82c96bb18606401630ab9d2836325fbd" -SUPERUSER_EMAIL="gokuldevse2001@gmail.com" \ No newline at end of file diff --git a/civicfix/.gitignore b/civicfix/.gitignore deleted file mode 100644 index ade89e4..0000000 --- a/civicfix/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.env -issue_photos/ \ No newline at end of file diff --git a/civicfix/civicfix/__init__.py b/civicfix/__init__.py similarity index 100% rename from civicfix/civicfix/__init__.py rename to civicfix/__init__.py diff --git a/civicfix/__pycache__/__init__.cpython-313.pyc b/civicfix/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..76a4b3bb76ef4b6b6d90f259566f6c59c3294b98 GIT binary patch literal 139 zcmey&%ge<81mWS)nIQTxh=2h`DC08=kTI1Zok5e)ZzV$!6Oi{ABy~&6*(xSIKf5$1 zCABOjIkPM?SvM`S0>T0@;^Q;(GE3s)^$IF)aoFVMrb17sHbGC{}&(AK+Nl7h>NzN?GOxB&ep7|#L9?K4j delta 48 ycmZ3=xq_4DGcPX}0}xDHy*y(hPcO5Wrn6N{a%Nd(azIgjR%&tygfn>!^G^V15fHrq diff --git a/civicfix/civicfix/__pycache__/wsgi.cpython-313.pyc b/civicfix/__pycache__/wsgi.cpython-313.pyc similarity index 100% rename from civicfix/civicfix/__pycache__/wsgi.cpython-313.pyc rename to civicfix/__pycache__/wsgi.cpython-313.pyc diff --git a/civicfix/civicfix/asgi.py b/civicfix/asgi.py similarity index 100% rename from civicfix/civicfix/asgi.py rename to civicfix/asgi.py diff --git a/civicfix/civicfix/__pycache__/__init__.cpython-313.pyc b/civicfix/civicfix/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index fd40d33f419ae9fadbf18cba6a7ce6076cb0b6e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmey&%ge<81gfEnGC=fW5CH>>P{wB#AY&>+I)f&o-%5reCLr%KNa~iZvsFxTW?5!( zKv8~HYH|sLla^V5V8q8~=4F<|$LkeT-r}&y%}*)KNwq6t1?mQwUJPPPO4oID^MrMTZlX-=wL W5i8IbkTu01#z$sGM#ds$APWFR0wse0 diff --git a/civicfix/civicfix/settings.py b/civicfix/settings.py similarity index 100% rename from civicfix/civicfix/settings.py rename to civicfix/settings.py diff --git a/civicfix/civicfix/urls.py b/civicfix/urls.py similarity index 100% rename from civicfix/civicfix/urls.py rename to civicfix/urls.py diff --git a/civicfix/civicfix/wsgi.py b/civicfix/wsgi.py similarity index 100% rename from civicfix/civicfix/wsgi.py rename to civicfix/wsgi.py diff --git a/civicfix/core/__init__.py b/core/__init__.py similarity index 100% rename from civicfix/core/__init__.py rename to core/__init__.py diff --git a/core/__pycache__/__init__.cpython-313.pyc b/core/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7dfe26f8bce13843495a4d9cf524113f6ac8c241 GIT binary patch literal 135 zcmey&%ge<81mWS)nIQTxh=2h`DC08=kTI1Zok5e)ZzV$!6Oi{ABy~&8*(xSIKf5$1 zCABOjIkPM?SvM`SA|^S%C^aTNJ~J<~BtBlRpz;=nO>TZlX-=wL5i3v|$k<{K<0CU8 KBV!RWkOcrN^Bv~^ literal 0 HcmV?d00001 diff --git a/civicfix/core/__pycache__/admin.cpython-313.pyc b/core/__pycache__/admin.cpython-313.pyc similarity index 84% rename from civicfix/core/__pycache__/admin.cpython-313.pyc rename to core/__pycache__/admin.cpython-313.pyc index b71af22e65603606ae7e787fcd8add66628e9689..ccf8345ae86c7f9773f6c0d9a02cc83dc01c7b10 100644 GIT binary patch delta 46 zcmZ3;IggX)GcPX}0}zCVM`v#2(PI`?cD9O1&(AK+Nl7h>NzN?GOxE2Tz#Pa303K%z AGynhq delta 49 zcmbQoxsa3RGcPX}0}%8$FV5J=qsJ_!=4=&{oLQEc98i>>m6}`v;cWJ04rBxXSsV`b diff --git a/civicfix/core/__pycache__/apps.cpython-313.pyc b/core/__pycache__/apps.cpython-313.pyc similarity index 66% rename from civicfix/core/__pycache__/apps.cpython-313.pyc rename to core/__pycache__/apps.cpython-313.pyc index bb8d376908185abd65c28c1866ad347f3493c246..455504be0b94a3e2495735de2f8d98d100478c20 100644 GIT binary patch delta 45 zcmaFP@`Q!wGcPX}0}zCVM`upt`6sO8Y!#E9pIw@hl3Es%oLQEcth-r((VYY*&X~yaPfXR>DkeFzEHgQvC_gJTxdg)5EX(N52mos=4_yEN diff --git a/civicfix/core/__pycache__/forms.cpython-313.pyc b/core/__pycache__/forms.cpython-313.pyc similarity index 86% rename from civicfix/core/__pycache__/forms.cpython-313.pyc rename to core/__pycache__/forms.cpython-313.pyc index 8cfac62835bf5e6293e7f57af9c8d8730efc9ea2..56a0b621f2bbb251321e081037d27aef210b2c3d 100644 GIT binary patch delta 46 zcmdlawO)$nGcPX}0}zCVM`v#2VPO_lcD9O1&(AK+Nl7h>NzN?GOxE43#>~S703@Oe A=l}o! delta 49 zcmZ24wMmNSGcPX}0}wO^tj*ZS!@?}4=4=&{oLQEc98i>>m6}`v;cQlB=HUVWVSEm_ diff --git a/civicfix/core/__pycache__/models.cpython-313.pyc b/core/__pycache__/models.cpython-313.pyc similarity index 96% rename from civicfix/core/__pycache__/models.cpython-313.pyc rename to core/__pycache__/models.cpython-313.pyc index 941f48d9064727701c01cc0392a62bc98bad08d3..8b9267b08799c531a2962a34ac6f7d87005183db 100644 GIT binary patch delta 46 zcmbQ`HrNzN?GOxE38!MaEm05;JM AVgLXD delta 49 zcmbR4Hp`9YGcPX}0}%MAY{=Ni6UHj0o@^D9oLQEc98i>>m6}`v;cPBtT_g(tYX}eW diff --git a/civicfix/core/__pycache__/urls.cpython-313.pyc b/core/__pycache__/urls.cpython-313.pyc similarity index 74% rename from civicfix/core/__pycache__/urls.cpython-313.pyc rename to core/__pycache__/urls.cpython-313.pyc index 7e8d0626ff64864a6caf7a6584cededf8b6b6f8f..c5444ab2d479a6e264d67882a0ec515f58c75c15 100644 GIT binary patch delta 46 zcmZ1=GFOD>GcPX}0}zCVM`v#2`M@r$ywJat%vn(@Nck?O^86N<0 CW)GAA delta 51 zcmX@SlJVF|MxM{Syj%=G5bd!cVA B5mx{J diff --git a/civicfix/core/admin.py b/core/admin.py similarity index 100% rename from civicfix/core/admin.py rename to core/admin.py diff --git a/civicfix/core/apps.py b/core/apps.py similarity index 100% rename from civicfix/core/apps.py rename to core/apps.py diff --git a/civicfix/core/forms.py b/core/forms.py similarity index 100% rename from civicfix/core/forms.py rename to core/forms.py diff --git a/civicfix/core/management/commands/initadmin.py b/core/management/commands/initadmin.py similarity index 100% rename from civicfix/core/management/commands/initadmin.py rename to core/management/commands/initadmin.py diff --git a/civicfix/core/migrations/0001_initial.py b/core/migrations/0001_initial.py similarity index 100% rename from civicfix/core/migrations/0001_initial.py rename to core/migrations/0001_initial.py diff --git a/civicfix/core/migrations/0002_user_banned_until_user_is_banned.py b/core/migrations/0002_user_banned_until_user_is_banned.py similarity index 100% rename from civicfix/core/migrations/0002_user_banned_until_user_is_banned.py rename to core/migrations/0002_user_banned_until_user_is_banned.py diff --git a/civicfix/core/migrations/__init__.py b/core/migrations/__init__.py similarity index 100% rename from civicfix/core/migrations/__init__.py rename to core/migrations/__init__.py diff --git a/civicfix/core/migrations/__pycache__/0001_initial.cpython-313.pyc b/core/migrations/__pycache__/0001_initial.cpython-313.pyc similarity index 97% rename from civicfix/core/migrations/__pycache__/0001_initial.cpython-313.pyc rename to core/migrations/__pycache__/0001_initial.cpython-313.pyc index ceb0996f1e8ec6badc7da0a3eff236274f88eec3..a6063fc85303f5c1fa2eeb10e7ed3ab8cff949a2 100644 GIT binary patch delta 46 zcmdmGx808CGcPX}0}zCVM`v#22@w-Eb+(F0&(AK+Nl7h>NzN?GOxE38CU%4a07AzO A&Hw-a delta 49 zcmdmPx66*_GcPX}0}%WRSevntCqzulBH1b?IkPM?IiM&%D>bNzN?GOxE38#w5!K03hfM ARR910 delta 49 zcmbQhKAD~8GcPX}0}yEDuFcrU6T&1Gm~0i3oLQEc98i>>m6}`v;cPBul4S${Sd$M3 diff --git a/civicfix/core/migrations/__pycache__/0002_vote.cpython-313.pyc b/core/migrations/__pycache__/0002_vote.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0002_vote.cpython-313.pyc rename to core/migrations/__pycache__/0002_vote.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc b/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc rename to core/migrations/__pycache__/0003_alter_user_user_permissions.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0003_comment.cpython-313.pyc b/core/migrations/__pycache__/0003_comment.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0003_comment.cpython-313.pyc rename to core/migrations/__pycache__/0003_comment.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc b/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc rename to core/migrations/__pycache__/0004_alter_user_user_permissions.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc b/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc rename to core/migrations/__pycache__/0004_department_alter_comment_user.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0005_department_users.cpython-313.pyc b/core/migrations/__pycache__/0005_department_users.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0005_department_users.cpython-313.pyc rename to core/migrations/__pycache__/0005_department_users.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc b/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc rename to core/migrations/__pycache__/0006_remove_department_users_department_admin.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0007_department_users.cpython-313.pyc b/core/migrations/__pycache__/0007_department_users.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0007_department_users.cpython-313.pyc rename to core/migrations/__pycache__/0007_department_users.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc b/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc rename to core/migrations/__pycache__/0008_alter_issue_options_alter_issue_category_and_more.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc b/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0009_issue_department.cpython-313.pyc rename to core/migrations/__pycache__/0009_issue_department.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc b/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc rename to core/migrations/__pycache__/0010_remove_issue_category_delete_issuecategory.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc b/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc rename to core/migrations/__pycache__/0011_delete_issuecategory.cpython-313.pyc diff --git a/civicfix/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc b/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc similarity index 100% rename from civicfix/core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc rename to core/migrations/__pycache__/0012_issuecategory_issue_category.cpython-313.pyc diff --git a/core/migrations/__pycache__/__init__.cpython-313.pyc b/core/migrations/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..87e9f978a5525931276a36b05b5a1f84a62312f9 GIT binary patch literal 146 zcmey&%ge<81mWS)nan`?F^B^Lj8MjB79e9PLpp;dqu)w~A|@d3Gf3)|p|e#?dVY3k zPD*N7Omb#fX0mQtW<^YLeo<;nZf1H>Vo7FxUU5u(d}dx|NqoFsLFFwDo80`A(wtPg WB37UYARCH7jE~HWjEqGf7XSe9_acq} literal 0 HcmV?d00001 diff --git a/civicfix/core/models.py b/core/models.py similarity index 100% rename from civicfix/core/models.py rename to core/models.py diff --git a/civicfix/core/templates/core/base.html b/core/templates/core/base.html similarity index 100% rename from civicfix/core/templates/core/base.html rename to core/templates/core/base.html diff --git a/civicfix/core/templates/core/index.html b/core/templates/core/index.html similarity index 100% rename from civicfix/core/templates/core/index.html rename to core/templates/core/index.html diff --git a/civicfix/core/templates/core/login.html b/core/templates/core/login.html similarity index 100% rename from civicfix/core/templates/core/login.html rename to core/templates/core/login.html diff --git a/civicfix/core/templates/core/manage_users.html b/core/templates/core/manage_users.html similarity index 100% rename from civicfix/core/templates/core/manage_users.html rename to core/templates/core/manage_users.html diff --git a/civicfix/core/templates/core/register.html b/core/templates/core/register.html similarity index 100% rename from civicfix/core/templates/core/register.html rename to core/templates/core/register.html diff --git a/civicfix/core/templates/core/superadmin_reports.html b/core/templates/core/superadmin_reports.html similarity index 100% rename from civicfix/core/templates/core/superadmin_reports.html rename to core/templates/core/superadmin_reports.html diff --git a/civicfix/core/templates/dashboard/citizen_dashboard.html b/core/templates/dashboard/citizen_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/citizen_dashboard.html rename to core/templates/dashboard/citizen_dashboard.html diff --git a/civicfix/core/templates/dashboard/department_dashboard.html b/core/templates/dashboard/department_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/department_dashboard.html rename to core/templates/dashboard/department_dashboard.html diff --git a/civicfix/core/templates/dashboard/superadmin_dashboard.html b/core/templates/dashboard/superadmin_dashboard.html similarity index 100% rename from civicfix/core/templates/dashboard/superadmin_dashboard.html rename to core/templates/dashboard/superadmin_dashboard.html diff --git a/civicfix/core/templates/department/department_detail.html b/core/templates/department/department_detail.html similarity index 100% rename from civicfix/core/templates/department/department_detail.html rename to core/templates/department/department_detail.html diff --git a/civicfix/core/templates/department/manage_departments.html b/core/templates/department/manage_departments.html similarity index 100% rename from civicfix/core/templates/department/manage_departments.html rename to core/templates/department/manage_departments.html diff --git a/civicfix/core/templates/issues/issue_detail.html b/core/templates/issues/issue_detail.html similarity index 100% rename from civicfix/core/templates/issues/issue_detail.html rename to core/templates/issues/issue_detail.html diff --git a/civicfix/core/templates/issues/manage_issues.html b/core/templates/issues/manage_issues.html similarity index 100% rename from civicfix/core/templates/issues/manage_issues.html rename to core/templates/issues/manage_issues.html diff --git a/civicfix/core/templates/issues/view_all_issues.html b/core/templates/issues/view_all_issues.html similarity index 100% rename from civicfix/core/templates/issues/view_all_issues.html rename to core/templates/issues/view_all_issues.html diff --git a/civicfix/core/templatetags/__init__.py b/core/templatetags/__init__.py similarity index 100% rename from civicfix/core/templatetags/__init__.py rename to core/templatetags/__init__.py diff --git a/core/templatetags/__pycache__/__init__.cpython-313.pyc b/core/templatetags/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9e55b0c2978461e2ac80462caac1aad141c8042 GIT binary patch literal 148 zcmey&%ge<81mWS)nIQTxh=2h`DC08=kTI1Zok5e)ZzV$!6Oi{ABz4Q!*(xSIKf5$1 zCABOjIkPM?SvM`SA|^S%C^e=eHMbxqu_U!5F}*k@K0Y%qvm`!Vub}c4hfQvNN@-52 XT@fqL43HhgAjU^#Mn=XWW*`dyM$jW$ literal 0 HcmV?d00001 diff --git a/civicfix/core/templatetags/__pycache__/custom_filters.cpython-313.pyc b/core/templatetags/__pycache__/custom_filters.cpython-313.pyc similarity index 73% rename from civicfix/core/templatetags/__pycache__/custom_filters.cpython-313.pyc rename to core/templatetags/__pycache__/custom_filters.cpython-313.pyc index 4fab2c738b1ec05209a41b245b9f89e0a1a07c14..2b7b4bd79cf7d29a4c0e9722d503fc7e832759c8 100644 GIT binary patch delta 45 zcmbQsI*XO(GcPX}0}zCVM`v#2>1PzSbhe5~&(AK+Nl7h>NzN?GOxB&ek?{=x8&?i; delta 48 ycmbQmI+vB_GcPX}0}vdmTbr?wr=L;G#@Q++IkPM?IiM&%D>b diff --git a/civicfix/core/templatetags/custom_filters.py b/core/templatetags/custom_filters.py similarity index 100% rename from civicfix/core/templatetags/custom_filters.py rename to core/templatetags/custom_filters.py diff --git a/civicfix/core/tests.py b/core/tests.py similarity index 100% rename from civicfix/core/tests.py rename to core/tests.py diff --git a/civicfix/core/urls.py b/core/urls.py similarity index 100% rename from civicfix/core/urls.py rename to core/urls.py diff --git a/civicfix/core/views.py b/core/views.py similarity index 100% rename from civicfix/core/views.py rename to core/views.py diff --git a/civicfix/manage.py b/manage.py similarity index 100% rename from civicfix/manage.py rename to manage.py diff --git a/civicfix/requirements.txt b/requirements.txt similarity index 100% rename from civicfix/requirements.txt rename to requirements.txt