componentsDjangoType 2.0.40__tar.gz → 2.1.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {componentsdjangotype-2.0.40/componentsDjangoType.egg-info → componentsdjangotype-2.1.0}/PKG-INFO +4 -1
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/README.md +3 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0/componentsDjangoType.egg-info}/PKG-INFO +4 -1
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authentication/auth.py +0 -1
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/setup.py +1 -1
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/LICENSE +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/MANIFEST.in +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/commands/createApp.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/__init__.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authentication/forms.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authenticator_configurator.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/copy_source.py +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/css/authentication.css +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/js/alertErrors.js +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/home.html +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/layouts/index.html +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/logged.html +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/login.html +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/signup.html +0 -0
- {componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/setup.cfg +0 -0
{componentsdjangotype-2.0.40/componentsDjangoType.egg-info → componentsdjangotype-2.1.0}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: componentsDjangoType
|
3
|
-
Version: 2.0
|
3
|
+
Version: 2.1.0
|
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
|
@@ -35,6 +35,9 @@ Este comando de Django te permite crear un componente HTML dentro del directorio
|
|
35
35
|
2. Luego instala el paquete pip `pip install componentsDjangoType`
|
36
36
|
3. Agrega `componentsDjangoType` a la lista de aplicaciones instaladas (`INSTALLED_APPS`) en el archivo `settings.py` de tu proyecto de Django.
|
37
37
|
|
38
|
+
> [!TIP]
|
39
|
+
> Solo istalar versiones estables ej. 1.0.0 o 2.1.0
|
40
|
+
|
38
41
|
## Uso
|
39
42
|
|
40
43
|
### comando para hacer archivos html css y js
|
@@ -16,6 +16,9 @@ Este comando de Django te permite crear un componente HTML dentro del directorio
|
|
16
16
|
2. Luego instala el paquete pip `pip install componentsDjangoType`
|
17
17
|
3. Agrega `componentsDjangoType` a la lista de aplicaciones instaladas (`INSTALLED_APPS`) en el archivo `settings.py` de tu proyecto de Django.
|
18
18
|
|
19
|
+
> [!TIP]
|
20
|
+
> Solo istalar versiones estables ej. 1.0.0 o 2.1.0
|
21
|
+
|
19
22
|
## Uso
|
20
23
|
|
21
24
|
### comando para hacer archivos html css y js
|
{componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0/componentsDjangoType.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: componentsDjangoType
|
3
|
-
Version: 2.0
|
3
|
+
Version: 2.1.0
|
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
|
@@ -35,6 +35,9 @@ Este comando de Django te permite crear un componente HTML dentro del directorio
|
|
35
35
|
2. Luego instala el paquete pip `pip install componentsDjangoType`
|
36
36
|
3. Agrega `componentsDjangoType` a la lista de aplicaciones instaladas (`INSTALLED_APPS`) en el archivo `settings.py` de tu proyecto de Django.
|
37
37
|
|
38
|
+
> [!TIP]
|
39
|
+
> Solo istalar versiones estables ej. 1.0.0 o 2.1.0
|
40
|
+
|
38
41
|
## Uso
|
39
42
|
|
40
43
|
### comando para hacer archivos html css y js
|
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.40 → componentsdjangotype-2.1.0}/componentsDjangoType.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authentication/__init__.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/authenticator_configurator.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/css/authentication.css
RENAMED
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.40 → componentsdjangotype-2.1.0}/services/utils/views/layouts/index.html
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|