├── .gitattributes ├── .gitignore ├── License ├── Module 1 ├── Chapter02 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter03 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── index.cpython-34.pyc │ │ │ └── index.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter04 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ └── public │ │ │ │ ├── connection.html │ │ │ │ ├── index.html │ │ │ │ └── index_for_templates.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ └── index.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── index.py │ │ │ └── index_for_templates.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── settings.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter05 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ └── public │ │ │ │ ├── connection.html │ │ │ │ ├── index.html │ │ │ │ └── index_for_templates.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ └── index.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── index.py │ │ │ └── index_for_templates.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter06 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ └── public │ │ │ │ ├── connection.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ └── project_detail.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ └── project_detail.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ └── project_detail.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter07 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ └── public │ │ │ │ ├── connection.html │ │ │ │ ├── create_developer.html │ │ │ │ ├── create_developer_html.html │ │ │ │ ├── create_project.html │ │ │ │ ├── create_supervisor.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ └── project_detail.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── create_developer.cpython-34.pyc │ │ │ ├── create_project.cpython-34.pyc │ │ │ ├── create_supervisor.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ └── project_detail.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── create_developer.py │ │ │ ├── create_developer_html.py │ │ │ ├── create_project.py │ │ │ ├── create_supervisor.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ └── project_detail.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter08 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ ├── cbv │ │ │ │ └── UpdateViewCustom.html │ │ │ │ └── public │ │ │ │ ├── confirm_delete_task.html │ │ │ │ ├── connection.html │ │ │ │ ├── create_developer.html │ │ │ │ ├── create_developer_html.html │ │ │ │ ├── create_project.html │ │ │ │ ├── create_supervisor.html │ │ │ │ ├── create_task.html │ │ │ │ ├── developer_detail.html │ │ │ │ ├── developer_list.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ ├── project_detail.html │ │ │ │ ├── project_list.html │ │ │ │ ├── task_detail.html │ │ │ │ ├── update_task.html │ │ │ │ └── update_task_developer.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── create_developer.cpython-34.pyc │ │ │ ├── create_project.cpython-34.pyc │ │ │ ├── create_supervisor.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ └── project_detail.cpython-34.pyc │ │ │ ├── cbv │ │ │ ├── DeleteView.py │ │ │ ├── DetailView.py │ │ │ ├── ListView.py │ │ │ ├── UpdateView.py │ │ │ ├── UpdateViewCustom.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── DeleteView.cpython-34.pyc │ │ │ │ ├── DetailView.cpython-34.pyc │ │ │ │ ├── ListView.cpython-34.pyc │ │ │ │ ├── UpdateView.cpython-34.pyc │ │ │ │ ├── UpdateViewCustom.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── create_developer.py │ │ │ ├── create_developer_html.py │ │ │ ├── create_project.py │ │ │ ├── create_supervisor.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ └── project_detail.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter09 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ ├── 0002_auto__add_userprofile__add_developer__add_task__add_supervisor__add_pr.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ ├── cbv │ │ │ │ └── UpdateViewCustom.html │ │ │ │ └── public │ │ │ │ ├── confirm_delete_task.html │ │ │ │ ├── connection.html │ │ │ │ ├── create_developer.html │ │ │ │ ├── create_developer_html.html │ │ │ │ ├── create_project.html │ │ │ │ ├── create_supervisor.html │ │ │ │ ├── create_task.html │ │ │ │ ├── developer_detail.html │ │ │ │ ├── developer_list.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ ├── project_detail.html │ │ │ │ ├── project_list.html │ │ │ │ ├── task_detail.html │ │ │ │ ├── tasks_list.html │ │ │ │ ├── update_task.html │ │ │ │ └── update_task_developer.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── create_developer.cpython-34.pyc │ │ │ ├── create_project.cpython-34.pyc │ │ │ ├── create_supervisor.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ ├── project_detail.cpython-34.pyc │ │ │ ├── task_detail.cpython-34.pyc │ │ │ └── task_list.cpython-34.pyc │ │ │ ├── cbv │ │ │ ├── DeleteView.py │ │ │ ├── DetailView.py │ │ │ ├── ListView.py │ │ │ ├── UpdateView.py │ │ │ ├── UpdateViewCustom.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── DeleteView.cpython-34.pyc │ │ │ │ ├── DetailView.cpython-34.pyc │ │ │ │ ├── ListView.cpython-34.pyc │ │ │ │ ├── UpdateView.cpython-34.pyc │ │ │ │ ├── UpdateViewCustom.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── create_developer.py │ │ │ ├── create_developer_html.py │ │ │ ├── create_project.py │ │ │ ├── create_supervisor.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ ├── project_detail.py │ │ │ ├── task_detail.py │ │ │ └── task_list.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter10 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ ├── cbv │ │ │ │ └── UpdateViewCustom.html │ │ │ │ └── public │ │ │ │ ├── confirm_delete_task.html │ │ │ │ ├── connection.html │ │ │ │ ├── create_developer.html │ │ │ │ ├── create_developer_html.html │ │ │ │ ├── create_project.html │ │ │ │ ├── create_supervisor.html │ │ │ │ ├── create_task.html │ │ │ │ ├── developer_detail.html │ │ │ │ ├── developer_list.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ ├── logout.html │ │ │ │ ├── project_detail.html │ │ │ │ ├── project_list.html │ │ │ │ ├── task_detail.html │ │ │ │ ├── tasks_list.html │ │ │ │ ├── update_task.html │ │ │ │ └── update_task_developer.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── create_developer.cpython-34.pyc │ │ │ ├── create_project.cpython-34.pyc │ │ │ ├── create_supervisor.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ ├── logout.cpython-34.pyc │ │ │ ├── project_detail.cpython-34.pyc │ │ │ ├── task_detail.cpython-34.pyc │ │ │ └── task_list.cpython-34.pyc │ │ │ ├── cbv │ │ │ ├── DeleteView.py │ │ │ ├── DetailView.py │ │ │ ├── ListView.py │ │ │ ├── UpdateView.py │ │ │ ├── UpdateViewCustom.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── DeleteView.cpython-34.pyc │ │ │ │ ├── DetailView.cpython-34.pyc │ │ │ │ ├── ListView.cpython-34.pyc │ │ │ │ ├── UpdateView.cpython-34.pyc │ │ │ │ ├── UpdateViewCustom.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── create_developer.py │ │ │ ├── create_developer_html.py │ │ │ ├── create_project.py │ │ │ ├── create_supervisor.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ ├── logout.py │ │ │ ├── project_detail.py │ │ │ ├── task_detail.py │ │ │ └── task_list.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py ├── Chapter11 │ └── Work_manager │ │ ├── TasksManager │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── admin.cpython-34.pyc │ │ │ ├── models.cpython-34.pyc │ │ │ └── views.cpython-34.pyc │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ ├── models.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── javascript │ │ │ │ ├── lib │ │ │ │ └── jquery-1.11.0.js │ │ │ │ └── task.js │ │ ├── templates │ │ │ ├── base.html │ │ │ └── en │ │ │ │ ├── cbv │ │ │ │ └── UpdateViewCustom.html │ │ │ │ └── public │ │ │ │ ├── confirm_delete_task.html │ │ │ │ ├── connection.html │ │ │ │ ├── create_developer.html │ │ │ │ ├── create_developer_html.html │ │ │ │ ├── create_project.html │ │ │ │ ├── create_supervisor.html │ │ │ │ ├── create_task.html │ │ │ │ ├── developer_list.html │ │ │ │ ├── index.html │ │ │ │ ├── index_chap_6.html │ │ │ │ ├── index_for_templates.html │ │ │ │ ├── logout.html │ │ │ │ ├── project_detail.html │ │ │ │ ├── project_list.html │ │ │ │ ├── task_detail.html │ │ │ │ ├── tasks_list.html │ │ │ │ ├── update_task.html │ │ │ │ └── update_task_developer.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── connection.cpython-34.pyc │ │ │ ├── create_developer.cpython-34.pyc │ │ │ ├── create_project.cpython-34.pyc │ │ │ ├── create_supervisor.cpython-34.pyc │ │ │ ├── index.cpython-34.pyc │ │ │ ├── logout.cpython-34.pyc │ │ │ ├── project_detail.cpython-34.pyc │ │ │ ├── task_detail.cpython-34.pyc │ │ │ └── task_list.cpython-34.pyc │ │ │ ├── ajax │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ └── task_delete_ajax.cpython-34.pyc │ │ │ └── task_delete_ajax.py │ │ │ ├── cbv │ │ │ ├── DeleteView.py │ │ │ ├── DetailView.py │ │ │ ├── ListView.py │ │ │ ├── UpdateView.py │ │ │ ├── UpdateViewCustom.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── DeleteView.cpython-34.pyc │ │ │ │ ├── DetailView.cpython-34.pyc │ │ │ │ ├── ListView.cpython-34.pyc │ │ │ │ ├── UpdateView.cpython-34.pyc │ │ │ │ ├── UpdateViewCustom.cpython-34.pyc │ │ │ │ └── __init__.cpython-34.pyc │ │ │ ├── connection.py │ │ │ ├── create_developer.py │ │ │ ├── create_developer_html.py │ │ │ ├── create_project.py │ │ │ ├── create_supervisor.py │ │ │ ├── index.py │ │ │ ├── index_chap_6.py │ │ │ ├── index_for_templates.py │ │ │ ├── logout.py │ │ │ ├── project_detail.py │ │ │ ├── task_detail.py │ │ │ └── task_list.py │ │ ├── Work_manager │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── settings.cpython-34.pyc │ │ │ ├── urls.cpython-34.pyc │ │ │ └── wsgi.cpython-34.pyc │ │ ├── database.db │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── static │ │ │ └── css │ │ │ │ └── style.css │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py └── Chapter12 │ └── Work_manager │ ├── TasksManager │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── admin.cpython-34.pyc │ │ ├── models.cpython-34.pyc │ │ └── views.cpython-34.pyc │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ └── __init__.cpython-34.pyc │ ├── models.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── javascript │ │ │ ├── lib │ │ │ └── jquery-1.11.0.js │ │ │ └── task.js │ ├── templates │ │ ├── base.html │ │ └── en │ │ │ ├── cbv │ │ │ └── UpdateViewCustom.html │ │ │ └── public │ │ │ ├── confirm_delete_task.html │ │ │ ├── connection.html │ │ │ ├── create_developer.html │ │ │ ├── create_developer_html.html │ │ │ ├── create_project.html │ │ │ ├── create_supervisor.html │ │ │ ├── create_task.html │ │ │ ├── developer_list.html │ │ │ ├── index.html │ │ │ ├── index_chap_6.html │ │ │ ├── index_for_templates.html │ │ │ ├── logout.html │ │ │ ├── project_detail.html │ │ │ ├── project_list.html │ │ │ ├── task_detail.html │ │ │ ├── tasks_list.html │ │ │ ├── update_task.html │ │ │ └── update_task_developer.html │ ├── tests.py │ ├── views.py │ └── views │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── connection.cpython-34.pyc │ │ ├── create_developer.cpython-34.pyc │ │ ├── create_project.cpython-34.pyc │ │ ├── create_supervisor.cpython-34.pyc │ │ ├── index.cpython-34.pyc │ │ ├── logout.cpython-34.pyc │ │ ├── project_detail.cpython-34.pyc │ │ ├── task_detail.cpython-34.pyc │ │ └── task_list.cpython-34.pyc │ │ ├── ajax │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── task_delete_ajax.cpython-34.pyc │ │ └── task_delete_ajax.py │ │ ├── cbv │ │ ├── DeleteView.py │ │ ├── DetailView.py │ │ ├── ListView.py │ │ ├── UpdateView.py │ │ ├── UpdateViewCustom.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── DeleteView.cpython-34.pyc │ │ │ ├── DetailView.cpython-34.pyc │ │ │ ├── ListView.cpython-34.pyc │ │ │ ├── UpdateView.cpython-34.pyc │ │ │ ├── UpdateViewCustom.cpython-34.pyc │ │ │ └── __init__.cpython-34.pyc │ │ ├── connection.py │ │ ├── create_developer.py │ │ ├── create_developer_html.py │ │ ├── create_project.py │ │ ├── create_supervisor.py │ │ ├── index.py │ │ ├── index_chap_6.py │ │ ├── index_for_templates.py │ │ ├── logout.py │ │ ├── project_detail.py │ │ ├── task_detail.py │ │ └── task_list.py │ ├── Work_manager │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── settings.cpython-34.pyc │ │ ├── urls.cpython-34.pyc │ │ └── wsgi.cpython-34.pyc │ ├── database.db │ ├── settings.py │ ├── settings.pyc │ ├── static │ │ └── css │ │ │ └── style.css │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── Module 2 ├── Chapter01 │ └── django-myproject │ │ ├── .gitignore │ │ ├── magazine │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── app_settings.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── signals.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── myapp2 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py.example │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements │ │ ├── base.txt │ │ ├── dev.txt │ │ ├── prod.txt │ │ ├── staging.txt │ │ └── test.txt │ │ └── utils │ │ ├── __init__.py │ │ └── misc.py ├── Chapter02 │ └── django-myproject-02 │ │ ├── .gitignore │ │ ├── demo_app │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_subtitle_added.py │ │ │ ├── 0003_prepopulate_subtitle.py │ │ │ ├── 0004_categories_added.py │ │ │ ├── 0005_copy_categories.py │ │ │ ├── 0006_delete_category.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── utils │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── misc.py │ │ └── models.py ├── Chapter03 │ └── django-myproject-03 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bulletin_board │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── cv │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── email_messages │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── ideas │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── manage.py │ │ ├── movies │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ ├── css │ │ │ │ ├── login.css │ │ │ │ └── style.css │ │ │ │ └── img │ │ │ │ └── smiley.jpg │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── base_single_column.html │ │ │ ├── base_two_columns.html │ │ │ ├── bulletin_board │ │ │ │ └── change_bulletin.html │ │ │ ├── cv │ │ │ │ └── cv_pdf.html │ │ │ ├── email_messages │ │ │ │ ├── message_to_user.html │ │ │ │ └── message_to_user_done.html │ │ │ ├── movies │ │ │ │ └── movie_list.html │ │ │ ├── quotes │ │ │ │ ├── add_quote_done.html │ │ │ │ └── change_quote.html │ │ │ ├── registration │ │ │ │ └── login.html │ │ │ └── search │ │ │ │ └── search.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── quotes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_language_added.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── requirements.txt │ │ ├── search │ │ ├── __init__.py │ │ ├── multilingual_whoosh_backend.py │ │ └── search_indexes.py │ │ └── utils │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── misc.py │ │ ├── models.py │ │ └── templatetags │ │ ├── __init__.py │ │ └── utility_tags.py ├── Chapter04 │ └── django-myproject-04 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── likes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── likes_tags.py │ │ ├── urls.py │ │ └── views.py │ │ ├── locations │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── manage.py │ │ ├── movies │ │ ├── __init__.py │ │ ├── urls.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ └── smiley.jpg │ │ │ │ └── js │ │ │ │ ├── change_quote.js │ │ │ │ ├── jquery.jscroll.js │ │ │ │ ├── jquery.jscroll.min.js │ │ │ │ ├── likes.js │ │ │ │ ├── list.js │ │ │ │ ├── location_detail.js │ │ │ │ └── location_list.js │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── base_simple.html │ │ │ ├── index.html │ │ │ ├── likes │ │ │ │ ├── includes │ │ │ │ │ └── like.html │ │ │ │ └── liked_object_list.html │ │ │ ├── locations │ │ │ │ ├── location_detail.html │ │ │ │ ├── location_detail_popup.html │ │ │ │ └── location_list.html │ │ │ ├── movies │ │ │ │ └── movie_list.html │ │ │ ├── quotes │ │ │ │ ├── add_quote_done.html │ │ │ │ ├── change_quote.html │ │ │ │ └── includes │ │ │ │ │ └── image_upload_widget.html │ │ │ ├── settings.js │ │ │ └── utils │ │ │ │ ├── footer_navigation.html │ │ │ │ ├── header_navigation.html │ │ │ │ └── language_chooser.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── quotes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── misc.py │ │ ├── models.py │ │ ├── templatetags │ │ ├── __init__.py │ │ └── utility_tags.py │ │ └── views.py ├── Chapter05 │ └── django-myproject-05 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── example │ │ ├── __init__.py │ │ └── views.py │ │ ├── manage.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ └── utils │ │ │ │ ├── footer_navigation.html │ │ │ │ ├── header_navigation.html │ │ │ │ ├── item.html │ │ │ │ ├── item_base.html │ │ │ │ └── language_chooser.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── misc.py │ │ ├── templatetags │ │ ├── __init__.py │ │ └── utility_tags.py │ │ └── views.py ├── Chapter06 │ └── django-myproject-06 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── custom_admin │ │ ├── __init__.py │ │ └── admin.py │ │ ├── locations │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── manage.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ ├── css │ │ │ │ ├── locating.css │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ └── locating.js │ │ ├── templates │ │ │ ├── admin │ │ │ │ ├── includes │ │ │ │ │ └── map.html │ │ │ │ └── locations │ │ │ │ │ └── location │ │ │ │ │ └── change_form.html │ │ │ ├── base.html │ │ │ ├── base_simple.html │ │ │ ├── index.html │ │ │ ├── likes │ │ │ │ ├── includes │ │ │ │ │ └── like.html │ │ │ │ └── liked_object_list.html │ │ │ ├── locations │ │ │ │ ├── location_detail.html │ │ │ │ ├── location_detail_popup.html │ │ │ │ └── location_list.html │ │ │ ├── movies │ │ │ │ └── movie_list.html │ │ │ ├── quotes │ │ │ │ ├── add_quote_done.html │ │ │ │ └── change_quote.html │ │ │ ├── settings.js │ │ │ └── utils │ │ │ │ ├── footer_navigation.html │ │ │ │ ├── header_navigation.html │ │ │ │ ├── item.html │ │ │ │ ├── item_base.html │ │ │ │ └── language_chooser.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── products │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── misc.py │ │ ├── models.py │ │ └── views.py ├── Chapter07 │ └── django-myproject-07 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cms_extensions │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── cms_toolbar.py │ │ ├── menu.py │ │ └── models.py │ │ ├── editorial │ │ ├── __init__.py │ │ ├── cms_plugins.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── manage.py │ │ ├── movies │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── cms_app.py │ │ ├── forms.py │ │ ├── menu.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ └── locating.js │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── cms │ │ │ │ ├── default.html │ │ │ │ ├── magazine.html │ │ │ │ ├── plugins │ │ │ │ │ ├── editorial_content.html │ │ │ │ │ └── editorial_content │ │ │ │ │ │ └── magazine.html │ │ │ │ └── start.html │ │ │ ├── index.html │ │ │ ├── menu │ │ │ │ ├── language_chooser.html │ │ │ │ └── menu.html │ │ │ ├── movies │ │ │ │ ├── movie_detail.html │ │ │ │ └── movie_list.html │ │ │ └── settings.js │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── misc.py │ │ ├── models.py │ │ ├── templatetags │ │ ├── __init__.py │ │ └── utility_tags.py │ │ └── views.py ├── Chapter08 │ └── django-myproject-08 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── manage.py │ │ ├── movies │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── base_single_column.html │ │ │ ├── base_two_columns.html │ │ │ ├── movies │ │ │ │ ├── add_movie.html │ │ │ │ ├── movie_category_list.html │ │ │ │ └── movie_list.html │ │ │ └── utils │ │ │ │ └── checkbox_select_multiple_tree.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── misc.py │ │ ├── models.py │ │ └── templatetags │ │ ├── __init__.py │ │ └── utility_tags.py ├── Chapter09 │ └── django-myproject-09 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bulletin_board │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api.py │ │ ├── apps.py │ │ ├── feeds.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── data │ │ ├── movies.csv │ │ └── movies.xls │ │ ├── manage.py │ │ ├── movies │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── import_movies_from_csv.py │ │ │ │ └── import_movies_from_xls.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── music │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── import_music_from_lastfm_as_json.py │ │ │ │ └── import_music_from_lastfm_as_xml.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── base_single_column.html │ │ │ ├── base_two_columns.html │ │ │ ├── bulletin_board │ │ │ │ ├── bulletin_list.html │ │ │ │ └── feeds │ │ │ │ │ └── bulletin_description.html │ │ │ └── utils │ │ │ │ └── checkbox_select_multiple_tree.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── requirements.txt │ │ └── utils │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── misc.py │ │ └── models.py ├── Chapter10 │ └── django-myproject-10 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── guerrilla_patches │ │ ├── __init__.py │ │ └── models.py │ │ ├── manage.py │ │ ├── myproject │ │ ├── __init__.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ ├── staging.py │ │ │ └── test.py │ │ ├── db.sqlite3 │ │ ├── settings.py │ │ ├── site_static │ │ │ └── site │ │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── base.html │ │ │ └── viral_videos │ │ │ │ └── viral_video_detail.html │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── public_html │ │ ├── htaccess_live.txt │ │ ├── htaccess_under_construction.txt │ │ └── myproject.wsgi │ │ ├── requirements.txt │ │ ├── utils │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── middleware.py │ │ ├── misc.py │ │ ├── models.py │ │ └── templatetags │ │ │ ├── __init__.py │ │ │ └── utility_tags.py │ │ └── viral_videos │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── checks.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── signals.py │ │ ├── urls.py │ │ └── views.py └── Chapter11 │ └── django-myproject-11 │ ├── .gitignore │ ├── README.md │ ├── bulletin_board │ ├── __init__.py │ ├── admin.py │ ├── feeds.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── data │ ├── movies.csv │ └── movies.xls │ ├── deployment │ ├── commands │ │ ├── backup_db.bsh │ │ └── cleanup.bsh │ ├── crontab.txt │ ├── fabfile.py │ └── public_html │ │ ├── htaccess_live.txt │ │ ├── htaccess_maintenance.txt │ │ └── my.wsgi │ ├── likes │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151115_1908.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── likes_tags.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── locations │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── myproject │ ├── __init__.py │ ├── conf │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ ├── prod.py │ │ ├── staging.py │ │ └── test.py │ ├── db.sqlite3 │ ├── db.sqlite3_backup │ ├── settings.py │ ├── site_static │ │ └── site │ │ │ ├── css │ │ │ └── style.css │ │ │ └── js │ │ │ ├── likes.js │ │ │ ├── location_detail.js │ │ │ └── location_list.js │ ├── templates │ │ ├── base.html │ │ ├── base_simple.html │ │ ├── bulletin_board │ │ │ ├── bulletin_list.html │ │ │ └── feeds │ │ │ │ └── bulletin_description.html │ │ ├── index.html │ │ ├── likes │ │ │ ├── includes │ │ │ │ └── like.html │ │ │ └── liked_object_list.html │ │ ├── locations │ │ │ ├── location_detail.html │ │ │ ├── location_detail_popup.html │ │ │ └── location_list.html │ │ └── utils │ │ │ └── checkbox_select_multiple_tree.html │ ├── urls.py │ └── wsgi.py │ ├── requirements.txt │ └── utils │ ├── __init__.py │ ├── fields.py │ ├── misc.py │ └── models.py ├── Module 3 ├── .gitignore ├── Chapter03 │ ├── .gitignore │ ├── docs │ │ └── index.md │ ├── local.env │ └── src │ │ ├── manage.py │ │ ├── posts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_like.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── profiles │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── services.py │ │ ├── signals.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── sightings │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ ├── admin_title.html │ │ └── base_site.html │ │ ├── base.html │ │ └── home.html ├── Chapter04 │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── dev-requirements.txt │ ├── docs │ │ └── index.md │ ├── local.env │ ├── requirements.txt │ └── src │ │ ├── chapter04 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── posts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_like.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── profiles │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── services.py │ │ ├── signals.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── sightings │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ ├── admin_title.html │ │ └── base_site.html │ │ ├── base.html │ │ ├── home.html │ │ └── myfeed.html ├── Chapter05 │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── dev-requirements.txt │ ├── docs │ │ └── index.md │ ├── local.env │ ├── requirements.txt │ └── src │ │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── chapter05 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── mydoctests.py │ │ ├── templates │ │ │ ├── customtags.html │ │ │ ├── myabout.html │ │ │ └── mybase.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── nav.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ ├── admin_title.html │ │ └── base_site.html │ │ ├── base.html │ │ └── home.html ├── Chapter06 │ ├── .gitignore │ ├── docs │ │ └── index.md │ ├── local.env │ └── src │ │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── chapter06 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ └── base_site.html │ │ ├── base.html │ │ └── home.html ├── Chapter07 │ ├── .gitignore │ ├── docs │ │ └── index.md │ ├── local.env │ └── src │ │ ├── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── chapter07 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── mydoctests.py │ │ ├── templates │ │ │ ├── cbv-form.html │ │ │ ├── chapter07 │ │ │ │ ├── importantdate_confirm_delete.html │ │ │ │ ├── importantdate_detail.html │ │ │ │ ├── importantdate_form.html │ │ │ │ └── importantdate_list.html │ │ │ ├── forms.html │ │ │ └── newsletter.html │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ ├── admin_title.html │ │ └── base_site.html │ │ ├── base.html │ │ └── home.html ├── Chapter09 │ ├── .gitignore │ ├── docs │ │ └── index.md │ ├── local.env │ ├── logs │ │ └── Imp │ └── src │ │ ├── app1 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── manage.py │ │ ├── posts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_like.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── profiles │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── services.py │ │ ├── signals.py │ │ ├── templatetags │ │ │ └── debug.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── sightings │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ │ ├── static │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-active.min.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── site │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── ico │ │ │ └── favicon.ico │ │ │ └── img │ │ │ ├── banner.jpg │ │ │ ├── logo-big.png │ │ │ └── logo.png │ │ ├── superbook │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── templates │ │ ├── _brandname.html │ │ ├── _navbar.html │ │ ├── about.html │ │ ├── admin │ │ ├── admin_title.html │ │ └── base_site.html │ │ ├── base.html │ │ ├── debugtest.html │ │ └── home.html ├── backport3to2.py ├── docs │ └── index.md ├── local.env └── src │ ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-active.min.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ └── site │ │ ├── css │ │ └── main.css │ │ ├── ico │ │ └── favicon.ico │ │ └── img │ │ ├── banner.jpg │ │ ├── logo-big.png │ │ └── logo.png │ ├── superbook │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── templates │ ├── _brandname.html │ ├── _navbar.html │ ├── about.html │ ├── admin │ ├── admin_title.html │ └── base_site.html │ ├── base.html │ └── home.html └── README.md /Module 1/Chapter02/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/TasksManager/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/TasksManager/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter02/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter02/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/TasksManager/views/index.py: -------------------------------------------------------------------------------- 1 | # -*- Coding: utf-8 -*- 2 | from django.http import HttpResponse 3 | # View for index page. 4 | def page (request) : 5 | return HttpResponse ("Hello world!" ) -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter03/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter03/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/TasksManager/views/index.py: -------------------------------------------------------------------------------- 1 | # -*- Coding: utf-8 -*- 2 | from django.shortcuts import render 3 | # View for index page. 4 | def page(request): 5 | return render(request, 'en/public/index.html') -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter04/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter04/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/TasksManager/views/index.py: -------------------------------------------------------------------------------- 1 | # -*- Coding: utf-8 -*- 2 | from django.shortcuts import render 3 | # View for index page. 4 | def page(request): 5 | return render(request, 'en/public/index.html') -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__init__.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/database.db -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter05/Work_manager/Work_manager/settings.pyc -------------------------------------------------------------------------------- /Module 1/Chapter05/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/templates/en/public/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block title_html %} 3 | Chapter 6 4 | {% endblock %} 5 | {% block h1 %} 6 | {{ bloc.super }}Chapter 6 7 | {% endblock %} 8 | {% block article_content %} 9 | {% endblock %} -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__init__.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/database.db -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter06/Work_manager/Work_manager/settings.pyc -------------------------------------------------------------------------------- /Module 1/Chapter06/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__init__.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/database.db -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter07/Work_manager/Work_manager/settings.pyc -------------------------------------------------------------------------------- /Module 1/Chapter07/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__pycache__/ListView.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__pycache__/ListView.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/TasksManager/views/cbv/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__init__.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/database.db -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter08/Work_manager/Work_manager/settings.pyc -------------------------------------------------------------------------------- /Module 1/Chapter08/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- 1 | tr.important td { 2 | font-weight:bold; 3 | } -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/connection.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/index.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/task_detail.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/task_detail.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/task_list.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/__pycache__/task_list.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__pycache__/ListView.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__pycache__/ListView.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/TasksManager/views/cbv/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/TasksManager/views/connection.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | # View for connection page. 3 | def page(request): 4 | return render(request, 'en/public/connection.html') -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__init__.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/database.db -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter09/Work_manager/Work_manager/settings.pyc -------------------------------------------------------------------------------- /Module 1/Chapter09/Work_manager/Work_manager/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color:red; 3 | font-size:150%; 4 | } -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 1/Chapter10/Work_manager/TasksManager/migrations/__init__.py -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/static/css/style.css: -------------------------------------------------------------------------------- 1 | tr.important td { 2 | font-weight:bold; 3 | } -------------------------------------------------------------------------------- /Module 1/Chapter10/Work_manager/TasksManager/templates/en/public/logout.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block article_content %} 3 |
{% trans "Thanks! Your message has been sent." %}
6 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/myproject/templates/quotes/add_quote_done.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load i18n %} 3 | 4 | {% block content %} 5 |{% trans "Thanks! Your quote has been saved." %}
6 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter03/django-myproject-03/quotes/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/quotes/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.contrib import admin 4 | 5 | from .models import InspirationalQuote 6 | 7 | admin.site.register(InspirationalQuote) 8 | -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter03/django-myproject-03/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.2 2 | django-crispy-forms 3 | xhtml2pdf 4 | whoosh 5 | django-haystack 6 | -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/search/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter03/django-myproject-03/utils/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /myproject/local_settings.py 3 | /myproject/static/ 4 | /myproject/tmp/ 5 | /myproject/media/ -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/likes/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/likes/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.contrib import admin 4 | 5 | from .models import Like 6 | 7 | admin.site.register(Like) -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/likes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/likes/migrations/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/likes/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/locations/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/locations/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.contrib import admin 4 | 5 | from models import Location 6 | 7 | admin.site.register(Location) 8 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/locations/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/locations/migrations/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/movies/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/movies/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.conf.urls import patterns, url 4 | 5 | urlpatterns = patterns("movies.views", 6 | url(r"^$", "movie_list", name="movie_list"), 7 | ) -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/conf/dev.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | 4 | EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" 5 | 6 | DEBUG = True -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/conf/prod.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/conf/staging.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/conf/test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/settings.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from conf.dev import * 3 | 4 | DATABASES = { 5 | 'default': { 6 | 'ENGINE': 'django.db.backends.sqlite3', 7 | 'NAME': os.path.join(PROJECT_PATH, 'myproject', 'db.sqlite3'), 8 | } 9 | } -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/site_static/site/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/myproject/site_static/site/img/loading.gif -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/site_static/site/img/smiley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/myproject/site_static/site/img/smiley.jpg -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/templates/quotes/add_quote_done.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load i18n %} 3 | 4 | {% block content %} 5 |{% trans "Thanks! Your quote has been saved." %}
6 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/templates/utils/footer_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/templates/utils/header_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/myproject/templates/utils/language_chooser.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/quotes/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/quotes/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.contrib import admin 4 | 5 | from .models import InspirationQuote 6 | 7 | admin.site.register(InspirationQuote) 8 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/quotes/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter04/django-myproject-04/quotes/migrations/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.7 2 | django-crispy-forms 3 | ajaxuploader -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter04/django-myproject-04/utils/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /myproject/local_settings.py 3 | /myproject/static/ 4 | /myproject/tmp/ 5 | /myproject/media/ -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/example/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/conf/dev.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | 4 | EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' 5 | 6 | DEBUG = True -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/conf/prod.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/conf/staging.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/conf/test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter05/django-myproject-05/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/settings.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from conf.dev import * 3 | 4 | DATABASES = { 5 | "default": { 6 | "ENGINE": "django.db.backends.sqlite3", 7 | "NAME": os.path.join(PROJECT_PATH, "myproject", "db.sqlite3"), 8 | } 9 | } -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/templates/utils/footer_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/templates/utils/header_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/templates/utils/item.html: -------------------------------------------------------------------------------- 1 | {% extends "utils/item_base.html" %} 2 | 3 | {% block well_content %} 4 | Hello World! 5 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter05/django-myproject-05/myproject/templates/utils/item_base.html: -------------------------------------------------------------------------------- 1 |{% trans "Thanks! Your quote has been saved." %}
6 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter06/django-myproject-06/myproject/templates/utils/footer_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter06/django-myproject-06/myproject/templates/utils/header_navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter06/django-myproject-06/myproject/templates/utils/item.html: -------------------------------------------------------------------------------- 1 | {% extends "utils/item_base.html" %} 2 | 3 | {% block well_content %} 4 | Hello World! 5 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter06/django-myproject-06/myproject/templates/utils/item_base.html: -------------------------------------------------------------------------------- 1 |{{ obj.description }}
-------------------------------------------------------------------------------- /Module 2/Chapter09/django-myproject-09/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | Django==1.8.5 3 | django-crispy-forms 4 | xlrd 5 | requests 6 | git+git://github.com/django-tastypie/django-tastypie.git 7 | 8 | djangorestframework 9 | markdown 10 | django-filter -------------------------------------------------------------------------------- /Module 2/Chapter09/django-myproject-09/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /myproject/local_settings.py 3 | /myproject/static/ 4 | /myproject/tmp/ 5 | /myproject/media/ -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/guerrilla_patches/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/conf/dev.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | 4 | EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' 5 | 6 | DEBUG = True -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/conf/prod.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/conf/staging.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/conf/test.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from base import * 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/myproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter10/django-myproject-10/myproject/db.sqlite3 -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.1 2 | django-debug-toolbar==1.4 3 | fabric==1.9.0 4 | awesome-slugify 5 | django-mobile 6 | python-memcached 7 | bpython -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/utils/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/viral_videos/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | default_app_config = "viral_videos.apps.ViralVideosAppConfig" -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/viral_videos/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 2/Chapter10/django-myproject-10/viral_videos/migrations/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter10/django-myproject-10/viral_videos/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | from __future__ import unicode_literals 3 | from django.conf.urls import * 4 | 5 | urlpatterns = [ 6 | url(r'^(?P{{ obj.description }}
-------------------------------------------------------------------------------- /Module 2/Chapter11/django-myproject-11/myproject/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block content %} 4 | Hello World! 5 | {% endblock %} -------------------------------------------------------------------------------- /Module 2/Chapter11/django-myproject-11/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.5 2 | django-crispy-forms 3 | requests 4 | 5 | djangorestframework 6 | markdown 7 | django-filter 8 | 9 | selenium 10 | mock 11 | 12 | cookiecutter 13 | -------------------------------------------------------------------------------- /Module 2/Chapter11/django-myproject-11/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: UTF-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /Module 3/Chapter03/docs/index.md: -------------------------------------------------------------------------------- 1 | Welcome to superbook! 2 | ============================== -------------------------------------------------------------------------------- /Module 3/Chapter03/src/posts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/posts/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter03/src/posts/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | admin.site.register(models.Post) 5 | admin.site.register(models.Comment) 6 | admin.site.register(models.Like) 7 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/posts/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/posts/migrations/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter03/src/posts/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/posts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "profiles.apps.ProfileConfig" 2 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/profiles/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ProfileConfig(AppConfig): 5 | name = "profiles" 6 | verbose_name = 'User Profiles' 7 | 8 | def ready(self): 9 | from . import signals 10 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/profiles/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from . import views 3 | 4 | urlpatterns = patterns( 5 | '', 6 | url(r'^$', views.SignInAndSignUp.as_view(), name="home", ), 7 | ) 8 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/sightings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/sightings/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter03/src/sightings/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | admin.site.register(models.Origin) 5 | admin.site.register(models.Location) 6 | admin.site.register(models.Sighting) 7 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/sightings/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/sightings/migrations/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter03/src/sightings/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/sightings/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/site/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/site/ico/favicon.ico -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/site/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/site/img/banner.jpg -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/site/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/site/img/logo-big.png -------------------------------------------------------------------------------- /Module 3/Chapter03/src/static/site/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/static/site/img/logo.png -------------------------------------------------------------------------------- /Module 3/Chapter03/src/superbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-Web-Development-with-Python/9f619f56553b5f0bca9b5ee2ae32953e142df1b2/Module 3/Chapter03/src/superbook/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter03/src/templates/_brandname.html: -------------------------------------------------------------------------------- 1 | SuperBook 2 | -------------------------------------------------------------------------------- /Module 3/Chapter03/src/templates/_navbar.html: -------------------------------------------------------------------------------- 1 |This is a simple About page
5 | {% endblock %} 6 | 7 | {% block heading %}About{% endblock %} 8 | -------------------------------------------------------------------------------- /Module 3/Chapter05/src/chapter05/templates/mybase.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |