├── .DS_Store ├── README.md ├── tutorial1 ├── .DS_Store ├── db.sqlite3 ├── hola │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── style.css │ ├── templates │ │ └── hola │ │ │ ├── index.html │ │ │ ├── moneda.html │ │ │ └── saludo.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── tutorial1 │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── tutorial2 ├── .DS_Store ├── db.sqlite3 ├── manage.py ├── todo │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── todo │ │ │ ├── add.html │ │ │ ├── home.html │ │ │ └── layout.html │ ├── tests.py │ ├── urls.py │ └── views.py └── tutorial2 │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tutorial3 ├── .DS_Store ├── datos_para_basedatos.py ├── db.sqlite3 ├── manage.py ├── pruebadb ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── tutorial3 ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/README.md -------------------------------------------------------------------------------- /tutorial1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/.DS_Store -------------------------------------------------------------------------------- /tutorial1/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial1/hola/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial1/hola/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/admin.py -------------------------------------------------------------------------------- /tutorial1/hola/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/apps.py -------------------------------------------------------------------------------- /tutorial1/hola/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial1/hola/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/models.py -------------------------------------------------------------------------------- /tutorial1/hola/static/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | text-align: center; 3 | color: blue; 4 | } -------------------------------------------------------------------------------- /tutorial1/hola/templates/hola/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/templates/hola/index.html -------------------------------------------------------------------------------- /tutorial1/hola/templates/hola/moneda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/templates/hola/moneda.html -------------------------------------------------------------------------------- /tutorial1/hola/templates/hola/saludo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/templates/hola/saludo.html -------------------------------------------------------------------------------- /tutorial1/hola/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/tests.py -------------------------------------------------------------------------------- /tutorial1/hola/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/urls.py -------------------------------------------------------------------------------- /tutorial1/hola/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/hola/views.py -------------------------------------------------------------------------------- /tutorial1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/manage.py -------------------------------------------------------------------------------- /tutorial1/tutorial1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial1/tutorial1/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/tutorial1/asgi.py -------------------------------------------------------------------------------- /tutorial1/tutorial1/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/tutorial1/settings.py -------------------------------------------------------------------------------- /tutorial1/tutorial1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/tutorial1/urls.py -------------------------------------------------------------------------------- /tutorial1/tutorial1/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial1/tutorial1/wsgi.py -------------------------------------------------------------------------------- /tutorial2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/.DS_Store -------------------------------------------------------------------------------- /tutorial2/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/manage.py -------------------------------------------------------------------------------- /tutorial2/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial2/todo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/admin.py -------------------------------------------------------------------------------- /tutorial2/todo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/apps.py -------------------------------------------------------------------------------- /tutorial2/todo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/forms.py -------------------------------------------------------------------------------- /tutorial2/todo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial2/todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/models.py -------------------------------------------------------------------------------- /tutorial2/todo/templates/todo/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/templates/todo/add.html -------------------------------------------------------------------------------- /tutorial2/todo/templates/todo/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/templates/todo/home.html -------------------------------------------------------------------------------- /tutorial2/todo/templates/todo/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/templates/todo/layout.html -------------------------------------------------------------------------------- /tutorial2/todo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/tests.py -------------------------------------------------------------------------------- /tutorial2/todo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/urls.py -------------------------------------------------------------------------------- /tutorial2/todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/todo/views.py -------------------------------------------------------------------------------- /tutorial2/tutorial2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial2/tutorial2/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/tutorial2/asgi.py -------------------------------------------------------------------------------- /tutorial2/tutorial2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/tutorial2/settings.py -------------------------------------------------------------------------------- /tutorial2/tutorial2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/tutorial2/urls.py -------------------------------------------------------------------------------- /tutorial2/tutorial2/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial2/tutorial2/wsgi.py -------------------------------------------------------------------------------- /tutorial3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/.DS_Store -------------------------------------------------------------------------------- /tutorial3/datos_para_basedatos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/datos_para_basedatos.py -------------------------------------------------------------------------------- /tutorial3/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/db.sqlite3 -------------------------------------------------------------------------------- /tutorial3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/manage.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial3/pruebadb/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/pruebadb/admin.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/pruebadb/apps.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/pruebadb/migrations/0001_initial.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial3/pruebadb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/pruebadb/models.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/pruebadb/tests.py -------------------------------------------------------------------------------- /tutorial3/pruebadb/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tutorial3/tutorial3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial3/tutorial3/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/tutorial3/asgi.py -------------------------------------------------------------------------------- /tutorial3/tutorial3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/tutorial3/settings.py -------------------------------------------------------------------------------- /tutorial3/tutorial3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/tutorial3/urls.py -------------------------------------------------------------------------------- /tutorial3/tutorial3/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mundo-python/curso_django_youtube/HEAD/tutorial3/tutorial3/wsgi.py --------------------------------------------------------------------------------