From a1ddc55206b10c1505ce59d8dad601b655b573e1 Mon Sep 17 00:00:00 2001 From: "holger.trampe" Date: Thu, 26 Mar 2020 00:08:57 +0100 Subject: [PATCH] 0.8.2 READY FOR QS! --- cloud/templates/cloud/cloud_main.html | 1 + dasettings/__pycache__/forms.cpython-38.pyc | Bin 4897 -> 4789 bytes dasettings/forms.py | 9 +- .../templates/dasettings/groups_content.html | 6 +- .../__pycache__/settings.cpython-38.pyc | Bin 3825 -> 3823 bytes .../__pycache__/urls.cpython-38.pyc | Bin 2222 -> 2228 bytes digitaleagentur/settings.py | 2 +- digitaleagentur/urls.py | 2 +- .../notificsys/allnotifications.html | 4 + notificsys/views.py | 8 +- orga/templates/orga/orga_main.html | 12 +- {quicklinks => organizer}/__init__.py | 0 .../__pycache__/__init__.cpython-38.pyc | Bin .../__pycache__/admin.cpython-38.pyc | Bin organizer/__pycache__/apps.cpython-38.pyc | Bin 0 -> 384 bytes organizer/__pycache__/forms.cpython-38.pyc | Bin 0 -> 3002 bytes organizer/__pycache__/models.cpython-38.pyc | Bin 0 -> 2818 bytes organizer/__pycache__/urls.cpython-38.pyc | Bin 0 -> 1491 bytes organizer/__pycache__/views.cpython-38.pyc | Bin 0 -> 8033 bytes {quicklinks => organizer}/admin.py | 0 organizer/apps.py | 4 + organizer/forms.py | 93 +++++++++ organizer/migrations/0001_initial.py | 26 +++ organizer/migrations/0002_agcontacts.py | 31 +++ organizer/migrations/0003_agpassword.py | 26 +++ .../migrations/0004_agpassword_usernname.py | 18 ++ .../migrations/0005_auto_20200325_2305.py | 18 ++ .../migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-38.pyc | Bin 0 -> 971 bytes .../0002_agcontacts.cpython-38.pyc | Bin 0 -> 1151 bytes .../0003_agpassword.cpython-38.pyc | Bin 0 -> 1017 bytes .../0004_agpassword_usernname.cpython-38.pyc | Bin 0 -> 622 bytes .../0005_auto_20200325_2305.cpython-38.pyc | Bin 0 -> 584 bytes .../__pycache__/__init__.cpython-38.pyc | Bin 0 -> 170 bytes organizer/models.py | 72 +++++++ organizer/templates/organizer/agpass_add.html | 19 ++ .../templates/organizer/agpass_delete.html | 24 +++ .../templates/organizer/agpass_update.html | 21 ++ .../templates/organizer/contact_add.html | 28 +++ .../templates/organizer/contact_delete.html | 24 +++ .../templates/organizer/contact_update.html | 29 +++ .../templates/organizer/contacts_content.html | 103 +++++++++ .../organizer/organizer_management.html | 107 ++++++++++ .../organizer/passwords_content.html | 107 ++++++++++ .../templates/organizer}/ql_add.html | 4 +- .../organizer}/ql_confirm_delete.html | 6 +- .../templates/organizer}/ql_update.html | 6 +- .../organizer/quicklinks_content.html | 34 ++- {quicklinks => organizer}/tests.py | 0 organizer/urls.py | 21 ++ organizer/views.py | 196 ++++++++++++++++++ quicklinks/__pycache__/apps.cpython-38.pyc | Bin 387 -> 0 bytes quicklinks/__pycache__/forms.cpython-38.pyc | Bin 707 -> 0 bytes quicklinks/__pycache__/models.cpython-38.pyc | Bin 1375 -> 0 bytes quicklinks/__pycache__/urls.cpython-38.pyc | Bin 863 -> 0 bytes quicklinks/__pycache__/views.cpython-38.pyc | Bin 4043 -> 0 bytes quicklinks/apps.py | 4 - quicklinks/forms.py | 15 -- quicklinks/models.py | 38 ---- quicklinks/urls.py | 15 -- quicklinks/views.py | 89 -------- standards/__pycache__/forms.cpython-38.pyc | Bin 3953 -> 3941 bytes standards/__pycache__/models.cpython-38.pyc | Bin 2103 -> 2103 bytes standards/forms.py | 8 +- standards/models.py | 2 +- .../templates/standards/standards_add.html | 94 ++++++++- .../standards/standards_management.html | 34 ++- .../templates/standards/standards_update.html | 82 +++++++- users/models.py | 4 +- users/signals.py | 42 +++- users/static/users/css/custom.css | 6 +- users/templates/users/base.html | 62 +----- users/templates/users/publicbase.html | 2 +- users/views.py | 8 +- 74 files changed, 1276 insertions(+), 290 deletions(-) rename {quicklinks => organizer}/__init__.py (100%) rename {quicklinks => organizer}/__pycache__/__init__.cpython-38.pyc (100%) rename {quicklinks => organizer}/__pycache__/admin.cpython-38.pyc (100%) create mode 100644 organizer/__pycache__/apps.cpython-38.pyc create mode 100644 organizer/__pycache__/forms.cpython-38.pyc create mode 100644 organizer/__pycache__/models.cpython-38.pyc create mode 100644 organizer/__pycache__/urls.cpython-38.pyc create mode 100644 organizer/__pycache__/views.cpython-38.pyc rename {quicklinks => organizer}/admin.py (100%) create mode 100644 organizer/apps.py create mode 100644 organizer/forms.py create mode 100644 organizer/migrations/0001_initial.py create mode 100644 organizer/migrations/0002_agcontacts.py create mode 100644 organizer/migrations/0003_agpassword.py create mode 100644 organizer/migrations/0004_agpassword_usernname.py create mode 100644 organizer/migrations/0005_auto_20200325_2305.py rename {quicklinks => organizer}/migrations/__init__.py (100%) create mode 100644 organizer/migrations/__pycache__/0001_initial.cpython-38.pyc create mode 100644 organizer/migrations/__pycache__/0002_agcontacts.cpython-38.pyc create mode 100644 organizer/migrations/__pycache__/0003_agpassword.cpython-38.pyc create mode 100644 organizer/migrations/__pycache__/0004_agpassword_usernname.cpython-38.pyc create mode 100644 organizer/migrations/__pycache__/0005_auto_20200325_2305.cpython-38.pyc create mode 100644 organizer/migrations/__pycache__/__init__.cpython-38.pyc create mode 100644 organizer/models.py create mode 100644 organizer/templates/organizer/agpass_add.html create mode 100644 organizer/templates/organizer/agpass_delete.html create mode 100644 organizer/templates/organizer/agpass_update.html create mode 100644 organizer/templates/organizer/contact_add.html create mode 100644 organizer/templates/organizer/contact_delete.html create mode 100644 organizer/templates/organizer/contact_update.html create mode 100644 organizer/templates/organizer/contacts_content.html create mode 100644 organizer/templates/organizer/organizer_management.html create mode 100644 organizer/templates/organizer/passwords_content.html rename {quicklinks/templates/quicklinks => organizer/templates/organizer}/ql_add.html (83%) rename {quicklinks/templates/quicklinks => organizer/templates/organizer}/ql_confirm_delete.html (71%) rename {quicklinks/templates/quicklinks => organizer/templates/organizer}/ql_update.html (74%) rename quicklinks/templates/quicklinks/ql_management.html => organizer/templates/organizer/quicklinks_content.html (68%) rename {quicklinks => organizer}/tests.py (100%) create mode 100644 organizer/urls.py create mode 100644 organizer/views.py delete mode 100644 quicklinks/__pycache__/apps.cpython-38.pyc delete mode 100644 quicklinks/__pycache__/forms.cpython-38.pyc delete mode 100644 quicklinks/__pycache__/models.cpython-38.pyc delete mode 100644 quicklinks/__pycache__/urls.cpython-38.pyc delete mode 100644 quicklinks/__pycache__/views.cpython-38.pyc delete mode 100644 quicklinks/apps.py delete mode 100644 quicklinks/forms.py delete mode 100644 quicklinks/models.py delete mode 100644 quicklinks/urls.py delete mode 100644 quicklinks/views.py diff --git a/cloud/templates/cloud/cloud_main.html b/cloud/templates/cloud/cloud_main.html index e7ff9ad..208efbf 100644 --- a/cloud/templates/cloud/cloud_main.html +++ b/cloud/templates/cloud/cloud_main.html @@ -358,6 +358,7 @@ a.disabled { +