From af8444c0e3a55729eaefd01976dc62c5f0325077 Mon Sep 17 00:00:00 2001 From: kikimor Date: Thu, 26 Jun 2025 15:54:51 +0300 Subject: [PATCH] Add IntelliJ IDEA project configuration files This commit adds IntelliJ IDEA-specific configuration files for the project, including module setup, version control integration, inspection profiles, and workspace settings. These files facilitate development environment configuration for contributors using IntelliJ IDEA. --- .idea/workspace.xml | 70 ++- DepoT/settings.py | 5 + DepoT/urls.py | 4 +- common/urls.py | 9 + common/views.py | 45 +- static/styles/styles.css | 198 +++++++ templates/client-dashboard-original.html | 689 +++++++++++++++++++++++ templates/landing-page.html | 150 +++++ users/forms.py | 5 + users/urls.py | 7 + 10 files changed, 1172 insertions(+), 10 deletions(-) create mode 100644 common/urls.py create mode 100644 static/styles/styles.css create mode 100644 templates/client-dashboard-original.html create mode 100644 templates/landing-page.html create mode 100644 users/forms.py create mode 100644 users/urls.py diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a2eb3fa..c97e951 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,19 +4,30 @@