├── Afters ├── repaso.py └── repaso_11_11.py ├── Clase_10 └── clase_10.py ├── Clase_11 └── clase_11.py ├── Clase_12 └── POO.py ├── Clase_13 └── POO_2.py ├── Clase_14 └── herencia.py ├── Clase_4 └── clase_4.py ├── Clase_5 └── Clase_5.py ├── Clase_6 ├── conjuntos.py └── diccionarios.py ├── Clase_7 └── clase_7.py ├── Clase_9 └── clase_9.py └── django └── python_34650 ├── .gitignore ├── db.sqlite3 ├── manage.py ├── orders ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── products ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_category.py │ ├── 0003_alter_products_stock.py │ └── __init__.py ├── models.py ├── urls.py └── views.py ├── providers ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── python_34650 ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── templates ├── base.html ├── categories │ └── list_categories.html ├── index.html ├── orders │ └── list_orders.html ├── products │ ├── create_product.html │ └── list_products.html ├── providers │ ├── provider-create.html │ ├── provider-delete.html │ ├── provider-update.html │ └── providers-list.html ├── saludo.html ├── template.html └── users │ ├── login.html │ ├── logout.html │ ├── register.html │ ├── update_profile.html │ └── update_user.html └── users ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py /Afters/repaso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Afters/repaso.py -------------------------------------------------------------------------------- /Afters/repaso_11_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Afters/repaso_11_11.py -------------------------------------------------------------------------------- /Clase_10/clase_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_10/clase_10.py -------------------------------------------------------------------------------- /Clase_11/clase_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_11/clase_11.py -------------------------------------------------------------------------------- /Clase_12/POO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_12/POO.py -------------------------------------------------------------------------------- /Clase_13/POO_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_13/POO_2.py -------------------------------------------------------------------------------- /Clase_14/herencia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_14/herencia.py -------------------------------------------------------------------------------- /Clase_4/clase_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_4/clase_4.py -------------------------------------------------------------------------------- /Clase_5/Clase_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_5/Clase_5.py -------------------------------------------------------------------------------- /Clase_6/conjuntos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_6/conjuntos.py -------------------------------------------------------------------------------- /Clase_6/diccionarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_6/diccionarios.py -------------------------------------------------------------------------------- /Clase_7/clase_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_7/clase_7.py -------------------------------------------------------------------------------- /Clase_9/clase_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/Clase_9/clase_9.py -------------------------------------------------------------------------------- /django/python_34650/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | media/ -------------------------------------------------------------------------------- /django/python_34650/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/db.sqlite3 -------------------------------------------------------------------------------- /django/python_34650/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/manage.py -------------------------------------------------------------------------------- /django/python_34650/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/admin.py -------------------------------------------------------------------------------- /django/python_34650/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/apps.py -------------------------------------------------------------------------------- /django/python_34650/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/python_34650/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/models.py -------------------------------------------------------------------------------- /django/python_34650/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/tests.py -------------------------------------------------------------------------------- /django/python_34650/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/urls.py -------------------------------------------------------------------------------- /django/python_34650/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/orders/views.py -------------------------------------------------------------------------------- /django/python_34650/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/admin.py -------------------------------------------------------------------------------- /django/python_34650/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/apps.py -------------------------------------------------------------------------------- /django/python_34650/products/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/forms.py -------------------------------------------------------------------------------- /django/python_34650/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/python_34650/products/migrations/0002_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/migrations/0002_category.py -------------------------------------------------------------------------------- /django/python_34650/products/migrations/0003_alter_products_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/migrations/0003_alter_products_stock.py -------------------------------------------------------------------------------- /django/python_34650/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/models.py -------------------------------------------------------------------------------- /django/python_34650/products/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/urls.py -------------------------------------------------------------------------------- /django/python_34650/products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/products/views.py -------------------------------------------------------------------------------- /django/python_34650/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/providers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/admin.py -------------------------------------------------------------------------------- /django/python_34650/providers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/apps.py -------------------------------------------------------------------------------- /django/python_34650/providers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/forms.py -------------------------------------------------------------------------------- /django/python_34650/providers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/python_34650/providers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/providers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/models.py -------------------------------------------------------------------------------- /django/python_34650/providers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/tests.py -------------------------------------------------------------------------------- /django/python_34650/providers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/urls.py -------------------------------------------------------------------------------- /django/python_34650/providers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/providers/views.py -------------------------------------------------------------------------------- /django/python_34650/python_34650/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/python_34650/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/python_34650/asgi.py -------------------------------------------------------------------------------- /django/python_34650/python_34650/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/python_34650/settings.py -------------------------------------------------------------------------------- /django/python_34650/python_34650/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/python_34650/urls.py -------------------------------------------------------------------------------- /django/python_34650/python_34650/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/python_34650/views.py -------------------------------------------------------------------------------- /django/python_34650/python_34650/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/python_34650/wsgi.py -------------------------------------------------------------------------------- /django/python_34650/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/base.html -------------------------------------------------------------------------------- /django/python_34650/templates/categories/list_categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/categories/list_categories.html -------------------------------------------------------------------------------- /django/python_34650/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/index.html -------------------------------------------------------------------------------- /django/python_34650/templates/orders/list_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/orders/list_orders.html -------------------------------------------------------------------------------- /django/python_34650/templates/products/create_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/products/create_product.html -------------------------------------------------------------------------------- /django/python_34650/templates/products/list_products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/products/list_products.html -------------------------------------------------------------------------------- /django/python_34650/templates/providers/provider-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/providers/provider-create.html -------------------------------------------------------------------------------- /django/python_34650/templates/providers/provider-delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/providers/provider-delete.html -------------------------------------------------------------------------------- /django/python_34650/templates/providers/provider-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/providers/provider-update.html -------------------------------------------------------------------------------- /django/python_34650/templates/providers/providers-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/providers/providers-list.html -------------------------------------------------------------------------------- /django/python_34650/templates/saludo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/saludo.html -------------------------------------------------------------------------------- /django/python_34650/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/template.html -------------------------------------------------------------------------------- /django/python_34650/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/users/login.html -------------------------------------------------------------------------------- /django/python_34650/templates/users/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/users/logout.html -------------------------------------------------------------------------------- /django/python_34650/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/users/register.html -------------------------------------------------------------------------------- /django/python_34650/templates/users/update_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/users/update_profile.html -------------------------------------------------------------------------------- /django/python_34650/templates/users/update_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/templates/users/update_user.html -------------------------------------------------------------------------------- /django/python_34650/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/admin.py -------------------------------------------------------------------------------- /django/python_34650/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/apps.py -------------------------------------------------------------------------------- /django/python_34650/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/forms.py -------------------------------------------------------------------------------- /django/python_34650/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/python_34650/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/python_34650/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/models.py -------------------------------------------------------------------------------- /django/python_34650/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/tests.py -------------------------------------------------------------------------------- /django/python_34650/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/urls.py -------------------------------------------------------------------------------- /django/python_34650/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucacitta/python-34650/HEAD/django/python_34650/users/views.py --------------------------------------------------------------------------------