componentsDjangoType 2.0.38__tar.gz → 2.0.39__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {componentsdjangotype-2.0.38/componentsDjangoType.egg-info → componentsdjangotype-2.0.39}/PKG-INFO +1 -1
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39/componentsDjangoType.egg-info}/PKG-INFO +1 -1
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authenticator_configurator.py +1 -1
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/setup.py +1 -1
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/LICENSE +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/MANIFEST.in +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/README.md +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/createApp.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/__init__.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authentication/auth.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authentication/forms.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/copy_source.py +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/css/authentication.css +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/js/alertErrors.js +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/home.html +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/layouts/index.html +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/logged.html +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/login.html +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/signup.html +0 -0
- {componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/setup.cfg +0 -0
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authenticator_configurator.py
RENAMED
@@ -241,7 +241,7 @@ urlpatterns = [
|
|
241
241
|
("services.utils.css", "authentication.css", os.path.join(css_dir, "authentication.css")),
|
242
242
|
("services.utils.views.layouts", "index.html", os.path.join(layouts_dir, "index.html")),
|
243
243
|
("services.utils.views", "home.html", os.path.join(templates_dir, "home.html")),
|
244
|
-
("services.utils.views", "
|
244
|
+
("services.utils.views", "signup.html", os.path.join(templates_dir, "signup.html")),
|
245
245
|
("services.utils.views", "login.html", os.path.join(templates_dir, "login.html")),
|
246
246
|
("services.utils.views", "logged.html", os.path.join(templates_dir, "logged.html")),
|
247
247
|
]
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/componentsDjangoType/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authentication/__init__.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/authentication/forms.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/css/authentication.css
RENAMED
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/js/alertErrors.js
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/layouts/index.html
RENAMED
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/logged.html
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.38 → componentsdjangotype-2.0.39}/services/utils/views/signup.html
RENAMED
File without changes
|
File without changes
|