├── .flake8 ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── contrib └── env-sample ├── docker-compose.yml ├── manage.py ├── pypro ├── __init__.py ├── aperitivos │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190910_0940.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── aperitivos │ │ │ ├── indice.html │ │ │ └── video.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_indice.py │ │ └── test_video.py │ ├── urls.py │ └── views.py ├── base │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── favicon.png │ │ │ └── luciano-ramalho.png │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── jquery.min.js │ │ │ ├── popper.min.js │ │ │ └── scripts.js │ ├── templates │ │ ├── base │ │ │ ├── base.html │ │ │ ├── footer.html │ │ │ └── home.html │ │ └── registration │ │ │ ├── login.html │ │ │ └── password_reset_form.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_home.py │ │ └── test_login.py │ ├── urls.py │ └── views.py ├── conftest.py ├── django_assertions.py ├── modulos │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── facade.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_modulo_slug.py │ │ ├── 0003_populando_slug.py │ │ ├── 0004_slug_unico_e_nao_nulo.py │ │ ├── 0005_aula.py │ │ ├── 0006_aula_vimeo_id.py │ │ ├── 0007_auto_vimeo_obrigatorio.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── modulos │ │ │ ├── aula_detalhe.html │ │ │ ├── indice.html │ │ │ └── modulo_detalhe.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_aba_de_modulos.py │ │ ├── test_aula_detalhe.py │ │ ├── test_facade.py │ │ ├── test_modulo_detalhe.py │ │ └── test_modulos_indice.py │ ├── urls.py │ └── views.py ├── settings.py ├── turmas │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_criacao_matricula.py │ │ ├── 0003_restricao_de_matricula_unica.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── turmas │ │ │ └── indice.html │ ├── tests │ │ ├── __init__.py │ │ └── test_indice.py │ ├── urls.py │ └── views.py ├── urls.py └── wsgi.py └── pytest.ini /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | exclude=.venv 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/.pyup.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/README.md -------------------------------------------------------------------------------- /contrib/env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/contrib/env-sample -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/manage.py -------------------------------------------------------------------------------- /pypro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/aperitivos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/aperitivos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/admin.py -------------------------------------------------------------------------------- /pypro/aperitivos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/migrations/0001_initial.py -------------------------------------------------------------------------------- /pypro/aperitivos/migrations/0002_auto_20190910_0940.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/migrations/0002_auto_20190910_0940.py -------------------------------------------------------------------------------- /pypro/aperitivos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/aperitivos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/models.py -------------------------------------------------------------------------------- /pypro/aperitivos/templates/aperitivos/indice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/templates/aperitivos/indice.html -------------------------------------------------------------------------------- /pypro/aperitivos/templates/aperitivos/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/templates/aperitivos/video.html -------------------------------------------------------------------------------- /pypro/aperitivos/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/aperitivos/tests/test_indice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/tests/test_indice.py -------------------------------------------------------------------------------- /pypro/aperitivos/tests/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/tests/test_video.py -------------------------------------------------------------------------------- /pypro/aperitivos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/urls.py -------------------------------------------------------------------------------- /pypro/aperitivos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/aperitivos/views.py -------------------------------------------------------------------------------- /pypro/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/admin.py -------------------------------------------------------------------------------- /pypro/base/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/migrations/0001_initial.py -------------------------------------------------------------------------------- /pypro/base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/models.py -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /pypro/base/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /pypro/base/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/css/style.css -------------------------------------------------------------------------------- /pypro/base/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /pypro/base/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /pypro/base/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /pypro/base/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /pypro/base/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /pypro/base/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/img/favicon.png -------------------------------------------------------------------------------- /pypro/base/static/img/luciano-ramalho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/img/luciano-ramalho.png -------------------------------------------------------------------------------- /pypro/base/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/index.html -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.js -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /pypro/base/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /pypro/base/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/jquery.min.js -------------------------------------------------------------------------------- /pypro/base/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/static/js/popper.min.js -------------------------------------------------------------------------------- /pypro/base/static/js/scripts.js: -------------------------------------------------------------------------------- 1 | // Empty JS for your own code to be here -------------------------------------------------------------------------------- /pypro/base/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/templates/base/base.html -------------------------------------------------------------------------------- /pypro/base/templates/base/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/templates/base/footer.html -------------------------------------------------------------------------------- /pypro/base/templates/base/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/templates/base/home.html -------------------------------------------------------------------------------- /pypro/base/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/templates/registration/login.html -------------------------------------------------------------------------------- /pypro/base/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /pypro/base/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/base/tests/test_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/tests/test_home.py -------------------------------------------------------------------------------- /pypro/base/tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/tests/test_login.py -------------------------------------------------------------------------------- /pypro/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/urls.py -------------------------------------------------------------------------------- /pypro/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/base/views.py -------------------------------------------------------------------------------- /pypro/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/conftest.py -------------------------------------------------------------------------------- /pypro/django_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/django_assertions.py -------------------------------------------------------------------------------- /pypro/modulos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/modulos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/admin.py -------------------------------------------------------------------------------- /pypro/modulos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/apps.py -------------------------------------------------------------------------------- /pypro/modulos/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/context_processors.py -------------------------------------------------------------------------------- /pypro/modulos/facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/facade.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0001_initial.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0002_modulo_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0002_modulo_slug.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0003_populando_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0003_populando_slug.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0004_slug_unico_e_nao_nulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0004_slug_unico_e_nao_nulo.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0005_aula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0005_aula.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0006_aula_vimeo_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0006_aula_vimeo_id.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/0007_auto_vimeo_obrigatorio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/migrations/0007_auto_vimeo_obrigatorio.py -------------------------------------------------------------------------------- /pypro/modulos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/modulos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/models.py -------------------------------------------------------------------------------- /pypro/modulos/templates/modulos/aula_detalhe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/templates/modulos/aula_detalhe.html -------------------------------------------------------------------------------- /pypro/modulos/templates/modulos/indice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/templates/modulos/indice.html -------------------------------------------------------------------------------- /pypro/modulos/templates/modulos/modulo_detalhe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/templates/modulos/modulo_detalhe.html -------------------------------------------------------------------------------- /pypro/modulos/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/modulos/tests/test_aba_de_modulos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/tests/test_aba_de_modulos.py -------------------------------------------------------------------------------- /pypro/modulos/tests/test_aula_detalhe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/tests/test_aula_detalhe.py -------------------------------------------------------------------------------- /pypro/modulos/tests/test_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/tests/test_facade.py -------------------------------------------------------------------------------- /pypro/modulos/tests/test_modulo_detalhe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/tests/test_modulo_detalhe.py -------------------------------------------------------------------------------- /pypro/modulos/tests/test_modulos_indice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/tests/test_modulos_indice.py -------------------------------------------------------------------------------- /pypro/modulos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/urls.py -------------------------------------------------------------------------------- /pypro/modulos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/modulos/views.py -------------------------------------------------------------------------------- /pypro/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/settings.py -------------------------------------------------------------------------------- /pypro/turmas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/turmas/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/admin.py -------------------------------------------------------------------------------- /pypro/turmas/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/apps.py -------------------------------------------------------------------------------- /pypro/turmas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/migrations/0001_initial.py -------------------------------------------------------------------------------- /pypro/turmas/migrations/0002_criacao_matricula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/migrations/0002_criacao_matricula.py -------------------------------------------------------------------------------- /pypro/turmas/migrations/0003_restricao_de_matricula_unica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/migrations/0003_restricao_de_matricula_unica.py -------------------------------------------------------------------------------- /pypro/turmas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/turmas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/models.py -------------------------------------------------------------------------------- /pypro/turmas/templates/turmas/indice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/templates/turmas/indice.html -------------------------------------------------------------------------------- /pypro/turmas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypro/turmas/tests/test_indice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/tests/test_indice.py -------------------------------------------------------------------------------- /pypro/turmas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/urls.py -------------------------------------------------------------------------------- /pypro/turmas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/turmas/views.py -------------------------------------------------------------------------------- /pypro/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/urls.py -------------------------------------------------------------------------------- /pypro/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprobr/curso-django/HEAD/pypro/wsgi.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE = pypro.settings --------------------------------------------------------------------------------