componentsDjangoType 2.0.19__tar.gz → 2.0.21__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (23) hide show
  1. {componentsdjangotype-2.0.19/componentsDjangoType.egg-info → componentsdjangotype-2.0.21}/PKG-INFO +1 -1
  2. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType/management/commands/createApp.py +1 -3
  3. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21/componentsDjangoType.egg-info}/PKG-INFO +1 -1
  4. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType.egg-info/SOURCES.txt +4 -4
  5. {componentsdjangotype-2.0.19/services/home → componentsdjangotype-2.0.21/services/Home}/urls_page.py +1 -1
  6. {componentsdjangotype-2.0.19/services/home → componentsdjangotype-2.0.21/services/Home}/views_page.py +1 -1
  7. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/services/authenticator_configurator.py +1 -1
  8. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/setup.py +1 -1
  9. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/LICENSE +0 -0
  10. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/MANIFEST.in +0 -0
  11. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/README.md +0 -0
  12. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType/__init__.py +0 -0
  13. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType/management/__init__.py +0 -0
  14. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType/management/commands/__init__.py +0 -0
  15. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType/management/commands/createcomponent.py +0 -0
  16. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
  17. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType.egg-info/requires.txt +0 -0
  18. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/componentsDjangoType.egg-info/top_level.txt +0 -0
  19. {componentsdjangotype-2.0.19/services → componentsdjangotype-2.0.21/services/Home}/__init__.py +0 -0
  20. {componentsdjangotype-2.0.19/services/authentication → componentsdjangotype-2.0.21/services}/__init__.py +0 -0
  21. {componentsdjangotype-2.0.19/services/home → componentsdjangotype-2.0.21/services/authentication}/__init__.py +0 -0
  22. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/services/authentication/auth.py +0 -0
  23. {componentsdjangotype-2.0.19 → componentsdjangotype-2.0.21}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.19
3
+ Version: 2.0.21
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
@@ -36,9 +36,7 @@ class Command(BaseCommand):
36
36
  # Paso 4: Crear la carpeta services y el archivo authentication.py en Home
37
37
  creation.creation_auth(self.stdout)
38
38
 
39
- # 5 creacion de las carpetas views y urls.py
40
- creation.create_views_urls(self.stdout)
41
-
39
+ creation.create_views_urls(self. stdout)
42
40
 
43
41
  # Paso 8: Crear la carpeta templates y estatic y los archivos HTML CSS y JS
44
42
  templates_dir = os.path.join(app_name, 'templates')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: componentsDjangoType
3
- Version: 2.0.19
3
+ Version: 2.0.21
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
@@ -14,8 +14,8 @@ componentsDjangoType/management/commands/createApp.py
14
14
  componentsDjangoType/management/commands/createcomponent.py
15
15
  services/__init__.py
16
16
  services/authenticator_configurator.py
17
+ services/Home/__init__.py
18
+ services/Home/urls_page.py
19
+ services/Home/views_page.py
17
20
  services/authentication/__init__.py
18
- services/authentication/auth.py
19
- services/home/__init__.py
20
- services/home/urls_page.py
21
- services/home/views_page.py
21
+ services/authentication/auth.py
@@ -1,5 +1,5 @@
1
1
  from django.urls import path
2
- from . import views
2
+ from Home import views
3
3
 
4
4
  urlpatterns = [
5
5
  path("", views.home, name='home'),
@@ -1,6 +1,6 @@
1
1
  from django.shortcuts import render
2
2
  from django.contrib.auth.decorators import login_required
3
- from Home.services.authentication import Authentication
3
+ from services.authentication.auth import Authentication
4
4
 
5
5
  # Create your views here.
6
6
 
@@ -3,7 +3,7 @@ import ast
3
3
  from django.core.management.base import BaseCommand
4
4
  from django.core.management import call_command
5
5
  from services.authentication import auth
6
- from services.home import views_page, urls_page
6
+ from services.Home import views_page, urls_page
7
7
 
8
8
  class DjangoProjectManager:
9
9
  def __init__(self, app_name, project_name):
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='componentsDjangoType',
5
- version='2.0.19',
5
+ version='2.0.21',
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  license='MIT',