componentsDjangoType 2.1.14__tar.gz → 2.1.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {componentsdjangotype-2.1.14/componentsDjangoType.egg-info → componentsdjangotype-2.1.15}/PKG-INFO +1 -1
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15/componentsDjangoType.egg-info}/PKG-INFO +1 -1
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType.egg-info/SOURCES.txt +2 -0
- componentsdjangotype-2.1.15/services/accounts/model.py +10 -0
- componentsdjangotype-2.1.15/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/setup.py +1 -1
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/LICENSE +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/MANIFEST.in +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/README.md +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/commands/createApp.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/__init__.py +0 -0
- {componentsdjangotype-2.1.14/services/authentication → componentsdjangotype-2.1.15/services/accounts}/__init__.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/authentication/auth.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/authentication/forms.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/authenticator_configurator.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/copy_source.py +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/media/users/usuario.png +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/css/authentication.css +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/js/alertErrors.js +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/views/home.html +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/views/layouts/index.html +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/views/logged.html +0 -0
- {componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/setup.cfg +0 -0
@@ -19,6 +19,8 @@ componentsDjangoType/management/commands/__pycache__/createApp.cpython-312.pyc
|
|
19
19
|
services/__init__.py
|
20
20
|
services/authenticator_configurator.py
|
21
21
|
services/copy_source.py
|
22
|
+
services/accounts/__init__.py
|
23
|
+
services/accounts/model.py
|
22
24
|
services/authentication/__init__.py
|
23
25
|
services/authentication/auth.py
|
24
26
|
services/authentication/forms.py
|
@@ -0,0 +1,10 @@
|
|
1
|
+
from django.db import models
|
2
|
+
from django.contrib.auth.models import AbstractUser
|
3
|
+
|
4
|
+
# Create your models here.
|
5
|
+
|
6
|
+
class Profile(AbstractUser):
|
7
|
+
image = models.ImageField(default='users/usuario.png', upload_to='users/')
|
8
|
+
|
9
|
+
class Meta:
|
10
|
+
app_label = 'accounts'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/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
|
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/authentication/forms.py
RENAMED
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/authenticator_configurator.py
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/media/users/usuario.png
RENAMED
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/css/authentication.css
RENAMED
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/js/alertErrors.js
RENAMED
File without changes
|
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/views/layouts/index.html
RENAMED
File without changes
|
{componentsdjangotype-2.1.14 → componentsdjangotype-2.1.15}/services/utils/views/logged.html
RENAMED
File without changes
|
File without changes
|