componentsDjangoType 2.0.36__tar.gz → 2.0.39__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. {componentsdjangotype-2.0.36/componentsDjangoType.egg-info → componentsdjangotype-2.0.39}/PKG-INFO +1 -1
  2. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39/componentsDjangoType.egg-info}/PKG-INFO +1 -1
  3. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/SOURCES.txt +1 -1
  4. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/authentication/auth.py +2 -2
  5. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/authenticator_configurator.py +2 -3
  6. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/copy_source.py +1 -1
  7. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/setup.py +1 -1
  8. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/LICENSE +0 -0
  9. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/MANIFEST.in +0 -0
  10. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/README.md +0 -0
  11. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/__init__.py +0 -0
  12. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/__pycache__/__init__.cpython-312.pyc +0 -0
  13. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/__init__.py +0 -0
  14. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/__pycache__/__init__.cpython-312.pyc +0 -0
  15. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__init__.py +0 -0
  16. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  17. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc +0 -0
  18. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/createApp.py +0 -0
  19. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType/management/commands/createcomponent.py +0 -0
  20. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
  21. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/requires.txt +0 -0
  22. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/componentsDjangoType.egg-info/top_level.txt +0 -0
  23. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/__init__.py +0 -0
  24. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/authentication/__init__.py +0 -0
  25. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/authentication/forms.py +0 -0
  26. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/css/authentication.css +0 -0
  27. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/js/alertErrors.js +0 -0
  28. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/views/home.html +0 -0
  29. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/views/layouts/index.html +0 -0
  30. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/views/logged.html +0 -0
  31. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/services/utils/views/login.html +0 -0
  32. /componentsdjangotype-2.0.36/services/utils/views/singup.html → /componentsdjangotype-2.0.39/services/utils/views/signup.html +0 -0
  33. {componentsdjangotype-2.0.36 → componentsdjangotype-2.0.39}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.36
3
+ Version: 2.0.39
4
4
  Summary: Comandos para crear archivos html, css y js
5
5
  Home-page: https://github.com/jose-CR/componentsDjangoType
6
6
  Author: Alejandro
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.36
3
+ Version: 2.0.39
4
4
  Summary: Comandos para crear archivos html, css y js
5
5
  Home-page: https://github.com/jose-CR/componentsDjangoType
6
6
  Author: Alejandro
@@ -27,5 +27,5 @@ services/utils/js/alertErrors.js
27
27
  services/utils/views/home.html
28
28
  services/utils/views/logged.html
29
29
  services/utils/views/login.html
30
- services/utils/views/singup.html
30
+ services/utils/views/signup.html
31
31
  services/utils/views/layouts/index.html
@@ -19,12 +19,12 @@ class Authentication:
19
19
  login(request, user)
20
20
  return redirect('logged')
21
21
  except IntegrityError:
22
- return render(request, 'singup.html', {
22
+ return render(request, 'signup.html', {
23
23
  'form': form,
24
24
  'error': 'Unable to register. Please try again later.'
25
25
  })
26
26
  else:
27
- return render(request, 'singup.html', {
27
+ return render(request, 'signup.html', {
28
28
  'form': form,
29
29
  'error': 'Please correct the errors below.'
30
30
  })
@@ -1,8 +1,7 @@
1
1
  import os
2
- import ast
3
- from services.copy_source import copy_static_file
4
2
  from django.core.management import call_command
5
3
  from services.authentication import auth
4
+ from services.copy_source import copy_static_file
6
5
 
7
6
  class DjangoProjectManager:
8
7
  def __init__(self, app_name, project_name):
@@ -242,7 +241,7 @@ urlpatterns = [
242
241
  ("services.utils.css", "authentication.css", os.path.join(css_dir, "authentication.css")),
243
242
  ("services.utils.views.layouts", "index.html", os.path.join(layouts_dir, "index.html")),
244
243
  ("services.utils.views", "home.html", os.path.join(templates_dir, "home.html")),
245
- ("services.utils.views", "singup.html", os.path.join(templates_dir, "singup.html")),
244
+ ("services.utils.views", "signup.html", os.path.join(templates_dir, "signup.html")),
246
245
  ("services.utils.views", "login.html", os.path.join(templates_dir, "login.html")),
247
246
  ("services.utils.views", "logged.html", os.path.join(templates_dir, "logged.html")),
248
247
  ]
@@ -1,4 +1,4 @@
1
- import importlib.resources as pkg_resources # Para acceder a recursos del paquete
1
+ import importlib.resources as pkg_resources
2
2
  import shutil
3
3
  import os
4
4
  import sys
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='componentsDjangoType',
5
- version='2.0.36',
5
+ version='2.0.39',
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  package_data={