├── Chapter01 ├── .DS_Store └── mysite │ ├── .DS_Store │ ├── blog │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── blog.css │ ├── templates │ │ ├── .DS_Store │ │ ├── blog │ │ │ ├── .DS_Store │ │ │ ├── base.html │ │ │ └── post │ │ │ │ ├── detail.html │ │ │ │ └── list.html │ │ └── pagination.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ └── mysite │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Chapter02 ├── .DS_Store └── mysite │ ├── .DS_Store │ ├── blog │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_comment.py │ │ ├── 0003_post_tags.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── blog.css │ ├── templates │ │ ├── .DS_Store │ │ ├── blog │ │ │ ├── .DS_Store │ │ │ ├── base.html │ │ │ └── post │ │ │ │ ├── detail.html │ │ │ │ ├── list.html │ │ │ │ └── share.html │ │ └── pagination.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ └── mysite │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Chapter03 ├── .DS_Store └── mysite │ ├── .DS_Store │ ├── blog │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── feeds.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_comment.py │ │ ├── 0003_post_tags.py │ │ └── __init__.py │ ├── models.py │ ├── sitemaps.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── blog.css │ ├── templates │ │ ├── .DS_Store │ │ ├── blog │ │ │ ├── .DS_Store │ │ │ ├── base.html │ │ │ └── post │ │ │ │ ├── detail.html │ │ │ │ ├── latest_posts.html │ │ │ │ ├── list.html │ │ │ │ ├── search.html │ │ │ │ └── share.html │ │ └── pagination.html │ ├── templatetags │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── blog_tags.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ └── mysite │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Chapter04 ├── .DS_Store └── bookmarks │ ├── .DS_Store │ ├── account │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── authentication.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── account │ │ │ ├── dashboard.html │ │ │ ├── edit.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── register_done.html │ │ ├── base.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ ├── login.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_form.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── bookmarks │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── Chapter05 ├── .DS_Store └── bookmarks │ ├── .DS_Store │ ├── account │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── authentication.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── account │ │ │ ├── dashboard.html │ │ │ ├── edit.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── register_done.html │ │ ├── base.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ ├── login.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_form.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── bookmarks │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── common │ ├── .DS_Store │ ├── __init__.py │ └── decorators.py │ ├── images │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ ├── css │ │ │ └── bookmarklet.css │ │ └── js │ │ │ └── bookmarklet.js │ ├── templates │ │ ├── bookmarklet_launcher.js │ │ └── images │ │ │ └── image │ │ │ ├── create.html │ │ │ ├── detail.html │ │ │ ├── list.html │ │ │ └── list_ajax.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── manage.py ├── Chapter06 ├── .DS_Store └── bookmarks │ ├── .DS_Store │ ├── account │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── authentication.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_contact.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── .DS_Store │ │ ├── account │ │ │ ├── dashboard.html │ │ │ ├── edit.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ ├── register_done.html │ │ │ └── user │ │ │ │ ├── detail.html │ │ │ │ └── list.html │ │ ├── actions │ │ │ └── action │ │ │ │ └── detail.html │ │ ├── base.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ ├── login.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_form.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── actions │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── utils.py │ └── views.py │ ├── bookmarks │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── common │ ├── .DS_Store │ ├── __init__.py │ └── decorators.py │ ├── images │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_image_total_likes.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── static │ │ ├── .DS_Store │ │ ├── css │ │ │ └── bookmarklet.css │ │ └── js │ │ │ └── bookmarklet.js │ ├── templates │ │ ├── .DS_Store │ │ ├── bookmarklet_launcher.js │ │ └── images │ │ │ ├── .DS_Store │ │ │ └── image │ │ │ ├── create.html │ │ │ ├── detail.html │ │ │ ├── list.html │ │ │ ├── list_ajax.html │ │ │ └── ranking.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── manage.py ├── Chapter07 ├── .DS_Store └── myshop │ ├── .DS_Store │ ├── cart │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── cart.py │ ├── context_processors.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── cart │ │ │ └── detail.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── myshop │ ├── .DS_Store │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── orders │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── orders │ │ │ └── order │ │ │ ├── create.html │ │ │ └── created.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── shop │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── .DS_Store │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── static │ ├── .DS_Store │ ├── css │ │ ├── base.css │ │ └── pdf.css │ └── img │ │ └── no_image.png │ ├── templates │ └── shop │ │ ├── base.html │ │ └── product │ │ ├── detail.html │ │ └── list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── Chapter08 ├── .DS_Store └── myshop │ ├── .DS_Store │ ├── cart │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── cart.py │ ├── context_processors.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── cart │ │ │ └── detail.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── manage.py │ ├── myshop │ ├── .DS_Store │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── orders │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_order_braintree_id.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ ├── admin │ │ │ └── orders │ │ │ │ └── order │ │ │ │ └── detail.html │ │ └── orders │ │ │ └── order │ │ │ ├── create.html │ │ │ ├── created.html │ │ │ └── pdf.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── payment │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── .DS_Store │ │ └── payment │ │ │ ├── canceled.html │ │ │ ├── done.html │ │ │ └── process.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── shop │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ ├── css │ │ │ ├── base.css │ │ │ └── pdf.css │ │ └── img │ │ │ └── no_image.png │ ├── templates │ │ └── shop │ │ │ ├── base.html │ │ │ └── product │ │ │ ├── detail.html │ │ │ └── list.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── static │ ├── .DS_Store │ ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE-JQUERY.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE-SELECT2.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE-XREGEXP.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js │ ├── css │ ├── base.css │ └── pdf.css │ └── img │ └── no_image.png ├── Chapter09 ├── .DS_Store └── myshop │ ├── .DS_Store │ ├── cart │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── cart.py │ ├── context_processors.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── cart │ │ │ └── detail.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── coupons │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── manage.py │ ├── myshop │ ├── .DS_Store │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── orders │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── locale │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_order_braintree_id.py │ │ ├── 0003_auto_20180307_2202.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ ├── admin │ │ │ └── orders │ │ │ │ └── order │ │ │ │ └── detail.html │ │ └── orders │ │ │ └── order │ │ │ ├── create.html │ │ │ ├── created.html │ │ │ └── pdf.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── payment │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── payment │ │ │ ├── canceled.html │ │ │ ├── done.html │ │ │ └── process.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── shop │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_translations.py │ │ └── __init__.py │ ├── models.py │ ├── recommender.py │ ├── static │ │ ├── .DS_Store │ │ ├── css │ │ │ ├── base.css │ │ │ └── pdf.css │ │ └── img │ │ │ └── no_image.png │ ├── templates │ │ ├── .DS_Store │ │ └── shop │ │ │ ├── .DS_Store │ │ │ ├── base.html │ │ │ └── product │ │ │ ├── detail.html │ │ │ └── list.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── static │ ├── .DS_Store │ ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE-JQUERY.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE-SELECT2.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE-XREGEXP.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js │ ├── css │ ├── base.css │ └── pdf.css │ └── img │ └── no_image.png ├── Chapter10 ├── .DS_Store └── educa │ ├── .DS_Store │ ├── courses │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fields.py │ ├── fixtures │ │ └── subjects.json │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_content_file_image_text_video.py │ │ ├── 0003_auto_20180326_0704.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── .DS_Store │ │ ├── base.html │ │ ├── courses │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── form.html │ │ │ │ ├── course │ │ │ │ ├── delete.html │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ │ │ └── module │ │ │ │ ├── content_list.html │ │ │ │ └── formset.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ └── login.html │ ├── templatetags │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── course.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── educa │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── Chapter11 ├── .DS_Store └── educa │ ├── .DS_Store │ ├── courses │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fields.py │ ├── fixtures │ │ └── subjects.json │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_content_file_image_text_video.py │ │ ├── 0003_auto_20180326_0704.py │ │ ├── 0004_course_students.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── base.html │ │ ├── courses │ │ │ ├── content │ │ │ │ ├── file.html │ │ │ │ ├── image.html │ │ │ │ ├── text.html │ │ │ │ └── video.html │ │ │ ├── course │ │ │ │ ├── detail.html │ │ │ │ └── list.html │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── form.html │ │ │ │ ├── course │ │ │ │ ├── delete.html │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ │ │ └── module │ │ │ │ ├── content_list.html │ │ │ │ └── formset.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ └── login.html │ ├── templatetags │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── course.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── educa │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── students │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── .DS_Store │ └── __init__.py │ ├── models.py │ ├── templates │ └── students │ │ ├── .DS_Store │ │ ├── course │ │ ├── detail.html │ │ └── list.html │ │ └── student │ │ └── registration.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── Chapter12 ├── .DS_Store └── educa │ ├── .DS_Store │ ├── courses │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── fields.py │ ├── fixtures │ │ └── subjects.json │ ├── forms.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_content_file_image_text_video.py │ │ ├── 0003_auto_20180326_0704.py │ │ ├── 0004_course_students.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── base.html │ │ ├── courses │ │ │ ├── content │ │ │ │ ├── file.html │ │ │ │ ├── image.html │ │ │ │ ├── text.html │ │ │ │ └── video.html │ │ │ ├── course │ │ │ │ ├── detail.html │ │ │ │ └── list.html │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── form.html │ │ │ │ ├── course │ │ │ │ ├── delete.html │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ │ │ └── module │ │ │ │ ├── content_list.html │ │ │ │ └── formset.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ └── login.html │ ├── templatetags │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── course.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── educa │ ├── .DS_Store │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── students │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── .DS_Store │ └── __init__.py │ ├── models.py │ ├── templates │ └── students │ │ ├── .DS_Store │ │ ├── course │ │ ├── detail.html │ │ └── list.html │ │ └── student │ │ └── registration.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── Chapter13 ├── .DS_Store └── educa │ ├── .DS_Store │ ├── config │ ├── nginx.conf │ └── uwsgi.ini │ ├── courses │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── fields.py │ ├── fixtures │ │ └── subjects.json │ ├── forms.py │ ├── middleware.py │ ├── migrations │ │ ├── .DS_Store │ │ ├── 0001_initial.py │ │ ├── 0002_content_file_image_text_video.py │ │ ├── 0003_auto_20180326_0704.py │ │ ├── 0004_course_students.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── .DS_Store │ │ └── css │ │ │ └── base.css │ ├── templates │ │ ├── base.html │ │ ├── courses │ │ │ ├── content │ │ │ │ ├── file.html │ │ │ │ ├── image.html │ │ │ │ ├── text.html │ │ │ │ └── video.html │ │ │ ├── course │ │ │ │ ├── detail.html │ │ │ │ └── list.html │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── form.html │ │ │ │ ├── course │ │ │ │ ├── delete.html │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ │ │ └── module │ │ │ │ ├── content_list.html │ │ │ │ └── formset.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ └── login.html │ ├── templatetags │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── course.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── educa │ ├── .DS_Store │ ├── __init__.py │ ├── settings │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local.py │ │ └── pro.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ ├── media │ ├── files │ │ └── 013348.png │ └── images │ │ └── 013348.png │ ├── ssl │ ├── educa.crt │ └── educa.key │ ├── static │ ├── admin │ │ ├── css │ │ │ ├── autocomplete.css │ │ │ ├── base.css │ │ │ ├── changelists.css │ │ │ ├── dashboard.css │ │ │ ├── fonts.css │ │ │ ├── forms.css │ │ │ ├── login.css │ │ │ ├── responsive.css │ │ │ ├── responsive_rtl.css │ │ │ ├── rtl.css │ │ │ ├── vendor │ │ │ │ └── select2 │ │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ └── widgets.css │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ ├── Roboto-Light-webfont.woff │ │ │ └── Roboto-Regular-webfont.woff │ │ ├── img │ │ │ ├── LICENSE │ │ │ ├── README.txt │ │ │ ├── calendar-icons.svg │ │ │ ├── gis │ │ │ │ ├── move_vertex_off.svg │ │ │ │ └── move_vertex_on.svg │ │ │ ├── icon-addlink.svg │ │ │ ├── icon-alert.svg │ │ │ ├── icon-calendar.svg │ │ │ ├── icon-changelink.svg │ │ │ ├── icon-clock.svg │ │ │ ├── icon-deletelink.svg │ │ │ ├── icon-no.svg │ │ │ ├── icon-unknown-alt.svg │ │ │ ├── icon-unknown.svg │ │ │ ├── icon-yes.svg │ │ │ ├── inline-delete.svg │ │ │ ├── search.svg │ │ │ ├── selector-icons.svg │ │ │ ├── sorting-icons.svg │ │ │ ├── tooltag-add.svg │ │ │ └── tooltag-arrowright.svg │ │ └── js │ │ │ ├── SelectBox.js │ │ │ ├── SelectFilter2.js │ │ │ ├── actions.js │ │ │ ├── actions.min.js │ │ │ ├── admin │ │ │ ├── DateTimeShortcuts.js │ │ │ └── RelatedObjectLookups.js │ │ │ ├── autocomplete.js │ │ │ ├── calendar.js │ │ │ ├── cancel.js │ │ │ ├── change_form.js │ │ │ ├── collapse.js │ │ │ ├── collapse.min.js │ │ │ ├── core.js │ │ │ ├── inlines.js │ │ │ ├── inlines.min.js │ │ │ ├── jquery.init.js │ │ │ ├── popup_response.js │ │ │ ├── prepopulate.js │ │ │ ├── prepopulate.min.js │ │ │ ├── prepopulate_init.js │ │ │ ├── timeparse.js │ │ │ ├── urlify.js │ │ │ └── vendor │ │ │ ├── jquery │ │ │ ├── LICENSE-JQUERY.txt │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ │ ├── select2 │ │ │ ├── LICENSE-SELECT2.md │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ └── select2.full.min.js │ │ │ └── xregexp │ │ │ ├── LICENSE-XREGEXP.txt │ │ │ ├── xregexp.js │ │ │ └── xregexp.min.js │ ├── css │ │ └── base.css │ └── rest_framework │ │ ├── css │ │ ├── bootstrap-tweaks.css │ │ ├── bootstrap.min.css │ │ ├── default.css │ │ └── prettify.css │ │ ├── docs │ │ ├── css │ │ │ ├── base.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome-4.0.3.css │ │ │ ├── highlight.css │ │ │ └── jquery.json-view.min.css │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── grid.png │ │ └── js │ │ │ ├── api.js │ │ │ ├── bootstrap.min.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ └── jquery.json-view.min.js │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── grid.png │ │ └── js │ │ ├── ajax-form.js │ │ ├── bootstrap.min.js │ │ ├── coreapi-0.1.1.js │ │ ├── csrf.js │ │ ├── default.js │ │ ├── jquery-1.12.4.min.js │ │ └── prettify-min.js │ └── students │ ├── .DS_Store │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── management │ ├── .DS_Store │ ├── __init__.py │ └── commands │ │ ├── .DS_Store │ │ ├── __init__.py │ │ └── enroll_reminder.py │ ├── migrations │ ├── .DS_Store │ └── __init__.py │ ├── models.py │ ├── templates │ └── students │ │ ├── .DS_Store │ │ ├── course │ │ ├── detail.html │ │ └── list.html │ │ └── student │ │ └── registration.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── LICENSE ├── README.md └── __MACOSX ├── Chapter01 ├── ._.DS_Store └── mysite │ ├── ._.DS_Store │ ├── ._manage.py │ ├── blog │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._apps.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._blog.css │ └── templates │ │ ├── ._.DS_Store │ │ ├── ._pagination.html │ │ └── blog │ │ ├── ._.DS_Store │ │ ├── ._base.html │ │ └── post │ │ ├── ._detail.html │ │ └── ._list.html │ └── mysite │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py ├── Chapter02 ├── ._.DS_Store └── mysite │ ├── ._.DS_Store │ ├── blog │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._blog.css │ └── templates │ │ ├── ._.DS_Store │ │ ├── ._pagination.html │ │ └── blog │ │ ├── ._.DS_Store │ │ ├── ._base.html │ │ └── post │ │ ├── ._detail.html │ │ ├── ._list.html │ │ └── ._share.html │ └── mysite │ ├── ._.DS_Store │ ├── ._settings.py │ ├── ._urls.py │ └── ._wsgi.py ├── Chapter03 ├── ._.DS_Store └── mysite │ ├── ._.DS_Store │ ├── ._manage.py │ ├── blog │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._feeds.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._sitemaps.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._blog.css │ ├── templates │ │ ├── ._.DS_Store │ │ ├── ._pagination.html │ │ └── blog │ │ │ ├── ._.DS_Store │ │ │ ├── ._base.html │ │ │ └── post │ │ │ ├── ._detail.html │ │ │ ├── ._latest_posts.html │ │ │ ├── ._list.html │ │ │ ├── ._search.html │ │ │ └── ._share.html │ └── templatetags │ │ ├── ._.DS_Store │ │ └── ._blog_tags.py │ └── mysite │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py ├── Chapter04 ├── ._.DS_Store └── bookmarks │ ├── ._.DS_Store │ ├── account │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._apps.py │ ├── ._authentication.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ └── templates │ │ ├── ._base.html │ │ ├── account │ │ ├── ._dashboard.html │ │ ├── ._edit.html │ │ ├── ._login.html │ │ ├── ._register.html │ │ └── ._register_done.html │ │ └── registration │ │ ├── ._logged_out.html │ │ ├── ._login.html │ │ ├── ._password_change_done.html │ │ ├── ._password_change_form.html │ │ ├── ._password_reset_complete.html │ │ ├── ._password_reset_confirm.html │ │ ├── ._password_reset_done.html │ │ ├── ._password_reset_email.html │ │ └── ._password_reset_form.html │ └── bookmarks │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py ├── Chapter05 ├── ._.DS_Store └── bookmarks │ ├── ._.DS_Store │ ├── account │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._authentication.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ ├── ._.DS_Store │ │ └── .___init__.py │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ └── templates │ │ ├── ._base.html │ │ ├── account │ │ ├── ._dashboard.html │ │ ├── ._edit.html │ │ ├── ._login.html │ │ ├── ._register.html │ │ └── ._register_done.html │ │ └── registration │ │ ├── ._logged_out.html │ │ ├── ._login.html │ │ ├── ._password_change_done.html │ │ ├── ._password_change_form.html │ │ ├── ._password_reset_complete.html │ │ ├── ._password_reset_confirm.html │ │ ├── ._password_reset_done.html │ │ ├── ._password_reset_email.html │ │ └── ._password_reset_form.html │ ├── bookmarks │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py │ ├── common │ ├── ._.DS_Store │ ├── .___init__.py │ └── ._decorators.py │ └── images │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._apps.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ └── ._.DS_Store │ ├── static │ ├── ._.DS_Store │ ├── css │ │ └── ._bookmarklet.css │ └── js │ │ └── ._bookmarklet.js │ └── templates │ ├── ._bookmarklet_launcher.js │ └── images │ └── image │ ├── ._create.html │ ├── ._detail.html │ ├── ._list.html │ └── ._list_ajax.html ├── Chapter06 ├── ._.DS_Store └── bookmarks │ ├── ._.DS_Store │ ├── account │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._authentication.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ ├── ._.DS_Store │ │ └── ._0001_initial.py │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ └── templates │ │ ├── ._.DS_Store │ │ ├── ._base.html │ │ ├── account │ │ ├── ._dashboard.html │ │ ├── ._edit.html │ │ ├── ._login.html │ │ ├── ._register.html │ │ ├── ._register_done.html │ │ └── user │ │ │ ├── ._detail.html │ │ │ └── ._list.html │ │ ├── actions │ │ └── action │ │ │ └── ._detail.html │ │ └── registration │ │ ├── ._logged_out.html │ │ ├── ._login.html │ │ ├── ._password_change_done.html │ │ ├── ._password_change_form.html │ │ ├── ._password_reset_complete.html │ │ ├── ._password_reset_confirm.html │ │ ├── ._password_reset_done.html │ │ ├── ._password_reset_email.html │ │ └── ._password_reset_form.html │ ├── actions │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._apps.py │ ├── ._models.py │ ├── ._utils.py │ └── migrations │ │ └── ._.DS_Store │ ├── bookmarks │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py │ ├── common │ ├── ._.DS_Store │ ├── .___init__.py │ └── ._decorators.py │ └── images │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._signals.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ ├── ._.DS_Store │ ├── ._0002_image_total_likes.py │ └── .___init__.py │ ├── static │ ├── ._.DS_Store │ ├── css │ │ └── ._bookmarklet.css │ └── js │ │ └── ._bookmarklet.js │ └── templates │ ├── ._.DS_Store │ ├── ._bookmarklet_launcher.js │ └── images │ ├── ._.DS_Store │ └── image │ ├── ._create.html │ ├── ._detail.html │ ├── ._list.html │ ├── ._list_ajax.html │ └── ._ranking.html ├── Chapter07 ├── ._.DS_Store └── myshop │ ├── ._.DS_Store │ ├── cart │ ├── ._.DS_Store │ ├── ._cart.py │ ├── ._context_processors.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ └── cart │ │ └── ._detail.html │ ├── myshop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._celery.py │ ├── ._settings.py │ └── ._urls.py │ ├── orders │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tasks.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ └── orders │ │ └── order │ │ ├── ._create.html │ │ └── ._created.html │ └── shop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ ├── ._.DS_Store │ └── ._0001_initial.py │ ├── static │ ├── ._.DS_Store │ ├── css │ │ ├── ._base.css │ │ └── ._pdf.css │ └── img │ │ └── ._no_image.png │ └── templates │ └── shop │ ├── ._base.html │ └── product │ ├── ._detail.html │ └── ._list.html ├── Chapter08 ├── ._.DS_Store └── myshop │ ├── ._.DS_Store │ ├── cart │ ├── ._.DS_Store │ ├── ._cart.py │ ├── ._context_processors.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ └── cart │ │ └── ._detail.html │ ├── myshop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._celery.py │ ├── ._settings.py │ └── ._urls.py │ ├── orders │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tasks.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ ├── admin │ │ └── orders │ │ │ └── order │ │ │ └── ._detail.html │ │ └── orders │ │ └── order │ │ ├── ._create.html │ │ ├── ._created.html │ │ └── ._pdf.html │ ├── payment │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ ├── ._.DS_Store │ │ └── payment │ │ ├── ._canceled.html │ │ ├── ._done.html │ │ └── ._process.html │ ├── shop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ ├── ._.DS_Store │ │ └── ._0001_initial.py │ ├── static │ │ ├── ._.DS_Store │ │ ├── css │ │ │ ├── ._base.css │ │ │ └── ._pdf.css │ │ └── img │ │ │ └── ._no_image.png │ └── templates │ │ └── shop │ │ ├── ._base.html │ │ └── product │ │ ├── ._detail.html │ │ └── ._list.html │ └── static │ └── ._.DS_Store ├── Chapter09 ├── ._.DS_Store └── myshop │ ├── ._.DS_Store │ ├── cart │ ├── ._.DS_Store │ ├── ._cart.py │ ├── ._context_processors.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ └── cart │ │ └── ._detail.html │ ├── coupons │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._apps.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._urls.py │ ├── ._views.py │ └── migrations │ │ └── ._.DS_Store │ ├── locale │ └── es │ │ └── LC_MESSAGES │ │ └── ._django.po │ ├── myshop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._celery.py │ ├── ._settings.py │ └── ._urls.py │ ├── orders │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tasks.py │ ├── ._urls.py │ ├── ._views.py │ ├── locale │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── ._django.po │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ └── ._django.po │ ├── migrations │ │ ├── ._.DS_Store │ │ └── ._0003_auto_20180307_2202.py │ └── templates │ │ ├── admin │ │ └── orders │ │ │ └── order │ │ │ └── ._detail.html │ │ └── orders │ │ └── order │ │ ├── ._create.html │ │ ├── ._created.html │ │ └── ._pdf.html │ ├── payment │ ├── ._.DS_Store │ ├── ._admin.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ └── ._.DS_Store │ └── templates │ │ └── payment │ │ ├── ._canceled.html │ │ ├── ._done.html │ │ └── ._process.html │ ├── shop │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._models.py │ ├── ._recommender.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ │ ├── ._.DS_Store │ │ └── ._0001_initial.py │ ├── static │ │ ├── ._.DS_Store │ │ ├── css │ │ │ ├── ._base.css │ │ │ └── ._pdf.css │ │ └── img │ │ │ └── ._no_image.png │ └── templates │ │ ├── ._.DS_Store │ │ └── shop │ │ ├── ._.DS_Store │ │ ├── ._base.html │ │ └── product │ │ ├── ._detail.html │ │ └── ._list.html │ └── static │ └── ._.DS_Store ├── Chapter10 ├── ._.DS_Store └── educa │ ├── ._.DS_Store │ ├── courses │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._fields.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tests.py │ ├── ._urls.py │ ├── ._views.py │ ├── fixtures │ │ └── ._subjects.json │ ├── migrations │ │ ├── ._.DS_Store │ │ ├── ._0002_content_file_image_text_video.py │ │ └── ._0003_auto_20180326_0704.py │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ ├── templates │ │ ├── ._.DS_Store │ │ ├── ._base.html │ │ ├── courses │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── ._form.html │ │ │ │ ├── course │ │ │ │ ├── ._delete.html │ │ │ │ ├── ._form.html │ │ │ │ └── ._list.html │ │ │ │ └── module │ │ │ │ ├── ._content_list.html │ │ │ │ └── ._formset.html │ │ └── registration │ │ │ ├── ._logged_out.html │ │ │ └── ._login.html │ └── templatetags │ │ ├── ._.DS_Store │ │ ├── .___init__.py │ │ └── ._course.py │ └── educa │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py ├── Chapter11 ├── ._.DS_Store └── educa │ ├── ._.DS_Store │ ├── courses │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._fields.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tests.py │ ├── ._urls.py │ ├── ._views.py │ ├── fixtures │ │ └── ._subjects.json │ ├── migrations │ │ ├── ._.DS_Store │ │ ├── ._0002_content_file_image_text_video.py │ │ └── ._0003_auto_20180326_0704.py │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ ├── templates │ │ ├── ._base.html │ │ ├── courses │ │ │ ├── content │ │ │ │ ├── ._file.html │ │ │ │ ├── ._image.html │ │ │ │ ├── ._text.html │ │ │ │ └── ._video.html │ │ │ ├── course │ │ │ │ ├── ._detail.html │ │ │ │ └── ._list.html │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── ._form.html │ │ │ │ ├── course │ │ │ │ ├── ._delete.html │ │ │ │ ├── ._form.html │ │ │ │ └── ._list.html │ │ │ │ └── module │ │ │ │ ├── ._content_list.html │ │ │ │ └── ._formset.html │ │ └── registration │ │ │ ├── ._logged_out.html │ │ │ └── ._login.html │ └── templatetags │ │ ├── ._.DS_Store │ │ ├── .___init__.py │ │ └── ._course.py │ ├── educa │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py │ └── students │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._forms.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ └── ._.DS_Store │ └── templates │ └── students │ ├── ._.DS_Store │ ├── course │ ├── ._detail.html │ └── ._list.html │ └── student │ └── ._registration.html ├── Chapter12 ├── ._.DS_Store └── educa │ ├── ._.DS_Store │ ├── courses │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._fields.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tests.py │ ├── ._urls.py │ ├── ._views.py │ ├── api │ │ ├── ._.DS_Store │ │ ├── .___init__.py │ │ ├── ._permissions.py │ │ ├── ._serializers.py │ │ ├── ._urls.py │ │ └── ._views.py │ ├── fixtures │ │ └── ._subjects.json │ ├── migrations │ │ ├── ._.DS_Store │ │ ├── ._0002_content_file_image_text_video.py │ │ └── ._0003_auto_20180326_0704.py │ ├── static │ │ ├── ._.DS_Store │ │ └── css │ │ │ └── ._base.css │ ├── templates │ │ ├── ._base.html │ │ ├── courses │ │ │ ├── content │ │ │ │ ├── ._file.html │ │ │ │ ├── ._image.html │ │ │ │ ├── ._text.html │ │ │ │ └── ._video.html │ │ │ ├── course │ │ │ │ ├── ._detail.html │ │ │ │ └── ._list.html │ │ │ └── manage │ │ │ │ ├── content │ │ │ │ └── ._form.html │ │ │ │ ├── course │ │ │ │ ├── ._delete.html │ │ │ │ ├── ._form.html │ │ │ │ └── ._list.html │ │ │ │ └── module │ │ │ │ ├── ._content_list.html │ │ │ │ └── ._formset.html │ │ └── registration │ │ │ ├── ._logged_out.html │ │ │ └── ._login.html │ └── templatetags │ │ ├── ._.DS_Store │ │ ├── .___init__.py │ │ └── ._course.py │ ├── educa │ ├── ._.DS_Store │ ├── ._settings.py │ └── ._urls.py │ └── students │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._admin.py │ ├── ._apps.py │ ├── ._forms.py │ ├── ._urls.py │ ├── ._views.py │ ├── migrations │ └── ._.DS_Store │ └── templates │ └── students │ ├── ._.DS_Store │ ├── course │ ├── ._detail.html │ └── ._list.html │ └── student │ └── ._registration.html └── Chapter13 ├── ._.DS_Store └── educa ├── ._.DS_Store ├── config ├── ._nginx.conf └── ._uwsgi.ini ├── courses ├── ._.DS_Store ├── .___init__.py ├── ._admin.py ├── ._apps.py ├── ._fields.py ├── ._forms.py ├── ._middleware.py ├── ._models.py ├── ._tests.py ├── ._urls.py ├── ._views.py ├── api │ ├── ._.DS_Store │ ├── .___init__.py │ ├── ._permissions.py │ ├── ._serializers.py │ ├── ._urls.py │ └── ._views.py ├── fixtures │ └── ._subjects.json ├── migrations │ ├── ._.DS_Store │ ├── ._0002_content_file_image_text_video.py │ └── ._0003_auto_20180326_0704.py ├── static │ ├── ._.DS_Store │ └── css │ │ └── ._base.css ├── templates │ ├── ._base.html │ ├── courses │ │ ├── content │ │ │ ├── ._file.html │ │ │ ├── ._image.html │ │ │ ├── ._text.html │ │ │ └── ._video.html │ │ ├── course │ │ │ ├── ._detail.html │ │ │ └── ._list.html │ │ └── manage │ │ │ ├── content │ │ │ └── ._form.html │ │ │ ├── course │ │ │ ├── ._delete.html │ │ │ ├── ._form.html │ │ │ └── ._list.html │ │ │ └── module │ │ │ ├── ._content_list.html │ │ │ └── ._formset.html │ └── registration │ │ ├── ._logged_out.html │ │ └── ._login.html └── templatetags │ ├── ._.DS_Store │ ├── .___init__.py │ └── ._course.py ├── educa ├── ._.DS_Store ├── .___init__.py ├── ._urls.py ├── ._wsgi.py └── settings │ ├── ._.DS_Store │ ├── ._base.py │ ├── ._local.py │ └── ._pro.py └── students ├── ._.DS_Store ├── .___init__.py ├── ._admin.py ├── ._apps.py ├── ._forms.py ├── ._urls.py ├── ._views.py ├── management ├── ._.DS_Store ├── .___init__.py └── commands │ ├── ._.DS_Store │ ├── .___init__.py │ └── ._enroll_reminder.py ├── migrations └── ._.DS_Store └── templates └── students ├── ._.DS_Store ├── course ├── ._detail.html └── ._list.html └── student └── ._registration.html /Chapter01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/mysite/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/admin.py -------------------------------------------------------------------------------- /Chapter01/mysite/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/apps.py -------------------------------------------------------------------------------- /Chapter01/mysite/blog/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/mysite/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/models.py -------------------------------------------------------------------------------- /Chapter01/mysite/blog/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/static/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/static/css/blog.css -------------------------------------------------------------------------------- /Chapter01/mysite/blog/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/templates/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/templates/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/blog/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter01/mysite/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/tests.py -------------------------------------------------------------------------------- /Chapter01/mysite/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/urls.py -------------------------------------------------------------------------------- /Chapter01/mysite/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/blog/views.py -------------------------------------------------------------------------------- /Chapter01/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/manage.py -------------------------------------------------------------------------------- /Chapter01/mysite/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter01/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/mysite/settings.py -------------------------------------------------------------------------------- /Chapter01/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/mysite/urls.py -------------------------------------------------------------------------------- /Chapter01/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter01/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /Chapter02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/mysite/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/admin.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/apps.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/forms.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/mysite/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/models.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/static/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/static/css/blog.css -------------------------------------------------------------------------------- /Chapter02/mysite/blog/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/templates/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/templates/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/blog/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter02/mysite/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/tests.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/urls.py -------------------------------------------------------------------------------- /Chapter02/mysite/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/blog/views.py -------------------------------------------------------------------------------- /Chapter02/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/manage.py -------------------------------------------------------------------------------- /Chapter02/mysite/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter02/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/mysite/settings.py -------------------------------------------------------------------------------- /Chapter02/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/mysite/urls.py -------------------------------------------------------------------------------- /Chapter02/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter02/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /Chapter03/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/mysite/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/admin.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/apps.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/feeds.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/forms.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/mysite/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/models.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/sitemaps.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/static/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/static/css/blog.css -------------------------------------------------------------------------------- /Chapter03/mysite/blog/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/templates/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/templates/blog/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter03/mysite/blog/templatetags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/templatetags/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/blog/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/mysite/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/tests.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/urls.py -------------------------------------------------------------------------------- /Chapter03/mysite/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/blog/views.py -------------------------------------------------------------------------------- /Chapter03/mysite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/manage.py -------------------------------------------------------------------------------- /Chapter03/mysite/mysite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/mysite/.DS_Store -------------------------------------------------------------------------------- /Chapter03/mysite/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/mysite/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/mysite/settings.py -------------------------------------------------------------------------------- /Chapter03/mysite/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/mysite/urls.py -------------------------------------------------------------------------------- /Chapter03/mysite/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter03/mysite/mysite/wsgi.py -------------------------------------------------------------------------------- /Chapter04/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/.DS_Store -------------------------------------------------------------------------------- /Chapter04/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/.DS_Store -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/admin.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/apps.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/authentication.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/forms.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/models.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/static/.DS_Store -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/tests.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/urls.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/account/views.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter04/bookmarks/bookmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/bookmarks/bookmarks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/bookmarks/settings.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/bookmarks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/bookmarks/urls.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/bookmarks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/bookmarks/wsgi.py -------------------------------------------------------------------------------- /Chapter04/bookmarks/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter04/bookmarks/manage.py -------------------------------------------------------------------------------- /Chapter05/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/admin.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/apps.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/authentication.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/forms.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/models.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/static/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/tests.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/urls.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/account/views.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/bookmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/bookmarks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/bookmarks/settings.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/bookmarks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/bookmarks/urls.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/bookmarks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/bookmarks/wsgi.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/common/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/common/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/common/decorators.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/admin.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/apps.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/forms.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/models.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/static/.DS_Store -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/tests.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/urls.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/images/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/images/views.py -------------------------------------------------------------------------------- /Chapter05/bookmarks/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter05/bookmarks/manage.py -------------------------------------------------------------------------------- /Chapter06/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/admin.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/apps.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/authentication.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/forms.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/models.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/static/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/tests.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/urls.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/account/views.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/admin.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/apps.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/models.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/tests.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/actions/utils.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/actions/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/bookmarks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/bookmarks/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/bookmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/bookmarks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/bookmarks/settings.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/bookmarks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/bookmarks/urls.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/bookmarks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/bookmarks/wsgi.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/common/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/common/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/common/decorators.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/admin.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/apps.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/forms.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/models.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/signals.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/static/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/tests.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/urls.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/images/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/images/views.py -------------------------------------------------------------------------------- /Chapter06/bookmarks/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter06/bookmarks/manage.py -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/cart/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/admin.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/apps.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/cart.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/context_processors.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/forms.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/models.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/tests.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/urls.py -------------------------------------------------------------------------------- /Chapter07/myshop/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/cart/views.py -------------------------------------------------------------------------------- /Chapter07/myshop/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/manage.py -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/__init__.py -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/celery.py -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/settings.py -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/urls.py -------------------------------------------------------------------------------- /Chapter07/myshop/myshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/myshop/wsgi.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/admin.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/apps.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/forms.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/models.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/tasks.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/tests.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/urls.py -------------------------------------------------------------------------------- /Chapter07/myshop/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/orders/views.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/admin.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/apps.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/myshop/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/models.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/static/.DS_Store -------------------------------------------------------------------------------- /Chapter07/myshop/shop/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/static/css/base.css -------------------------------------------------------------------------------- /Chapter07/myshop/shop/static/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/static/css/pdf.css -------------------------------------------------------------------------------- /Chapter07/myshop/shop/static/img/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/static/img/no_image.png -------------------------------------------------------------------------------- /Chapter07/myshop/shop/templates/shop/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/templates/shop/base.html -------------------------------------------------------------------------------- /Chapter07/myshop/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/tests.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/urls.py -------------------------------------------------------------------------------- /Chapter07/myshop/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter07/myshop/shop/views.py -------------------------------------------------------------------------------- /Chapter08/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/cart/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/admin.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/apps.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/cart.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/context_processors.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/forms.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/models.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/tests.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/urls.py -------------------------------------------------------------------------------- /Chapter08/myshop/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/cart/views.py -------------------------------------------------------------------------------- /Chapter08/myshop/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/manage.py -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/__init__.py -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/celery.py -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/settings.py -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/urls.py -------------------------------------------------------------------------------- /Chapter08/myshop/myshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/myshop/wsgi.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/admin.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/apps.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/forms.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/models.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/tasks.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/tests.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/urls.py -------------------------------------------------------------------------------- /Chapter08/myshop/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/orders/views.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/payment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/admin.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/apps.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/payment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/payment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/models.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/payment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/tests.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/urls.py -------------------------------------------------------------------------------- /Chapter08/myshop/payment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/payment/views.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/admin.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/apps.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/myshop/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/models.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/static/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/shop/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/static/css/base.css -------------------------------------------------------------------------------- /Chapter08/myshop/shop/static/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/static/css/pdf.css -------------------------------------------------------------------------------- /Chapter08/myshop/shop/static/img/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/static/img/no_image.png -------------------------------------------------------------------------------- /Chapter08/myshop/shop/templates/shop/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/templates/shop/base.html -------------------------------------------------------------------------------- /Chapter08/myshop/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/tests.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/urls.py -------------------------------------------------------------------------------- /Chapter08/myshop/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/shop/views.py -------------------------------------------------------------------------------- /Chapter08/myshop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/.DS_Store -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/base.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/fonts.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/forms.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/login.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/rtl.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/css/widgets.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/img/LICENSE -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/img/README.txt -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/img/search.svg -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/actions.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/calendar.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/cancel.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/collapse.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/core.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/inlines.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/admin/js/urlify.js -------------------------------------------------------------------------------- /Chapter08/myshop/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/css/base.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/css/pdf.css -------------------------------------------------------------------------------- /Chapter08/myshop/static/img/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter08/myshop/static/img/no_image.png -------------------------------------------------------------------------------- /Chapter09/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/cart/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/admin.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/apps.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/cart.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/context_processors.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/forms.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/models.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/tests.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/cart/views.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/admin.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/apps.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/forms.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/models.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/tests.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/coupons/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/coupons/views.py -------------------------------------------------------------------------------- /Chapter09/myshop/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/manage.py -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/__init__.py -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/celery.py -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/settings.py -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/myshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/myshop/wsgi.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/admin.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/apps.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/forms.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/models.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/tasks.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/tests.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/orders/views.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/payment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/payment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/admin.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/apps.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/payment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/payment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/models.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/tests.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/payment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/payment/views.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/admin.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/apps.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myshop/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/models.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/recommender.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/static/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/shop/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/static/css/base.css -------------------------------------------------------------------------------- /Chapter09/myshop/shop/static/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/static/css/pdf.css -------------------------------------------------------------------------------- /Chapter09/myshop/shop/static/img/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/static/img/no_image.png -------------------------------------------------------------------------------- /Chapter09/myshop/shop/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/shop/templates/shop/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/templates/shop/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/shop/templates/shop/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/templates/shop/base.html -------------------------------------------------------------------------------- /Chapter09/myshop/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/tests.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/urls.py -------------------------------------------------------------------------------- /Chapter09/myshop/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/shop/views.py -------------------------------------------------------------------------------- /Chapter09/myshop/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/.DS_Store -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/base.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/fonts.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/forms.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/login.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/rtl.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/css/widgets.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/img/LICENSE -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/img/README.txt -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/img/search.svg -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/actions.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/calendar.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/cancel.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/collapse.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/core.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/inlines.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/admin/js/urlify.js -------------------------------------------------------------------------------- /Chapter09/myshop/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/css/base.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/css/pdf.css -------------------------------------------------------------------------------- /Chapter09/myshop/static/img/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter09/myshop/static/img/no_image.png -------------------------------------------------------------------------------- /Chapter10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/educa/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/admin.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/apps.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/fields.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/fixtures/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/fixtures/subjects.json -------------------------------------------------------------------------------- /Chapter10/educa/courses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/forms.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/educa/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/models.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/static/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/static/css/base.css -------------------------------------------------------------------------------- /Chapter10/educa/courses/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/templates/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/templates/base.html -------------------------------------------------------------------------------- /Chapter10/educa/courses/templatetags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/templatetags/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/courses/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/educa/courses/templatetags/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/templatetags/course.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/tests.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/urls.py -------------------------------------------------------------------------------- /Chapter10/educa/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/courses/views.py -------------------------------------------------------------------------------- /Chapter10/educa/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter10/educa/educa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/educa/educa/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/educa/settings.py -------------------------------------------------------------------------------- /Chapter10/educa/educa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/educa/urls.py -------------------------------------------------------------------------------- /Chapter10/educa/educa/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/educa/wsgi.py -------------------------------------------------------------------------------- /Chapter10/educa/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter10/educa/manage.py -------------------------------------------------------------------------------- /Chapter11/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/courses/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/admin.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/apps.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/fields.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/fixtures/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/fixtures/subjects.json -------------------------------------------------------------------------------- /Chapter11/educa/courses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/forms.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/models.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/static/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/courses/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/static/css/base.css -------------------------------------------------------------------------------- /Chapter11/educa/courses/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/templates/base.html -------------------------------------------------------------------------------- /Chapter11/educa/courses/templates/courses/content/file.html: -------------------------------------------------------------------------------- 1 |

Download file

-------------------------------------------------------------------------------- /Chapter11/educa/courses/templates/courses/content/image.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /Chapter11/educa/courses/templates/courses/content/text.html: -------------------------------------------------------------------------------- 1 | {{ item.content|linebreaks|safe }} -------------------------------------------------------------------------------- /Chapter11/educa/courses/templatetags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/templatetags/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/courses/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/courses/templatetags/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/templatetags/course.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/tests.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/urls.py -------------------------------------------------------------------------------- /Chapter11/educa/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/courses/views.py -------------------------------------------------------------------------------- /Chapter11/educa/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/educa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/educa/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/educa/settings.py -------------------------------------------------------------------------------- /Chapter11/educa/educa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/educa/urls.py -------------------------------------------------------------------------------- /Chapter11/educa/educa/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/educa/wsgi.py -------------------------------------------------------------------------------- /Chapter11/educa/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/manage.py -------------------------------------------------------------------------------- /Chapter11/educa/students/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/admin.py -------------------------------------------------------------------------------- /Chapter11/educa/students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/apps.py -------------------------------------------------------------------------------- /Chapter11/educa/students/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/forms.py -------------------------------------------------------------------------------- /Chapter11/educa/students/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter11/educa/students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11/educa/students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/models.py -------------------------------------------------------------------------------- /Chapter11/educa/students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/tests.py -------------------------------------------------------------------------------- /Chapter11/educa/students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/urls.py -------------------------------------------------------------------------------- /Chapter11/educa/students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter11/educa/students/views.py -------------------------------------------------------------------------------- /Chapter12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/admin.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/api/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/api/permissions.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/api/serializers.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/api/urls.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/api/views.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/apps.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/fields.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/fixtures/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/fixtures/subjects.json -------------------------------------------------------------------------------- /Chapter12/educa/courses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/forms.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/models.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/static/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/static/css/base.css -------------------------------------------------------------------------------- /Chapter12/educa/courses/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/templates/base.html -------------------------------------------------------------------------------- /Chapter12/educa/courses/templates/courses/content/file.html: -------------------------------------------------------------------------------- 1 |

Download file

-------------------------------------------------------------------------------- /Chapter12/educa/courses/templates/courses/content/image.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /Chapter12/educa/courses/templates/courses/content/text.html: -------------------------------------------------------------------------------- 1 | {{ item.content|linebreaks|safe }} -------------------------------------------------------------------------------- /Chapter12/educa/courses/templatetags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/templatetags/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/courses/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/courses/templatetags/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/templatetags/course.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/tests.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/urls.py -------------------------------------------------------------------------------- /Chapter12/educa/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/courses/views.py -------------------------------------------------------------------------------- /Chapter12/educa/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/educa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/educa/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/educa/settings.py -------------------------------------------------------------------------------- /Chapter12/educa/educa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/educa/urls.py -------------------------------------------------------------------------------- /Chapter12/educa/educa/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/educa/wsgi.py -------------------------------------------------------------------------------- /Chapter12/educa/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/manage.py -------------------------------------------------------------------------------- /Chapter12/educa/students/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/admin.py -------------------------------------------------------------------------------- /Chapter12/educa/students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/apps.py -------------------------------------------------------------------------------- /Chapter12/educa/students/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/forms.py -------------------------------------------------------------------------------- /Chapter12/educa/students/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter12/educa/students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/educa/students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/models.py -------------------------------------------------------------------------------- /Chapter12/educa/students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/tests.py -------------------------------------------------------------------------------- /Chapter12/educa/students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/urls.py -------------------------------------------------------------------------------- /Chapter12/educa/students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter12/educa/students/views.py -------------------------------------------------------------------------------- /Chapter13/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/config/nginx.conf -------------------------------------------------------------------------------- /Chapter13/educa/config/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/config/uwsgi.ini -------------------------------------------------------------------------------- /Chapter13/educa/courses/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/admin.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/api/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/api/permissions.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/api/serializers.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/api/urls.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/api/views.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/apps.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/fields.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/fixtures/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/fixtures/subjects.json -------------------------------------------------------------------------------- /Chapter13/educa/courses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/forms.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/middleware.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/models.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/static/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/courses/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/static/css/base.css -------------------------------------------------------------------------------- /Chapter13/educa/courses/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/templates/base.html -------------------------------------------------------------------------------- /Chapter13/educa/courses/templates/courses/content/file.html: -------------------------------------------------------------------------------- 1 |

Download file

-------------------------------------------------------------------------------- /Chapter13/educa/courses/templates/courses/content/image.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /Chapter13/educa/courses/templates/courses/content/text.html: -------------------------------------------------------------------------------- 1 | {{ item.content|linebreaks|safe }} -------------------------------------------------------------------------------- /Chapter13/educa/courses/templatetags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/templatetags/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/courses/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/courses/templatetags/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/templatetags/course.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/tests.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/urls.py -------------------------------------------------------------------------------- /Chapter13/educa/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/courses/views.py -------------------------------------------------------------------------------- /Chapter13/educa/educa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/educa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/educa/settings/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/settings/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/educa/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/educa/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/settings/base.py -------------------------------------------------------------------------------- /Chapter13/educa/educa/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/settings/local.py -------------------------------------------------------------------------------- /Chapter13/educa/educa/settings/pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/settings/pro.py -------------------------------------------------------------------------------- /Chapter13/educa/educa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/urls.py -------------------------------------------------------------------------------- /Chapter13/educa/educa/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/educa/wsgi.py -------------------------------------------------------------------------------- /Chapter13/educa/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/manage.py -------------------------------------------------------------------------------- /Chapter13/educa/media/files/013348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/media/files/013348.png -------------------------------------------------------------------------------- /Chapter13/educa/media/images/013348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/media/images/013348.png -------------------------------------------------------------------------------- /Chapter13/educa/ssl/educa.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/ssl/educa.crt -------------------------------------------------------------------------------- /Chapter13/educa/ssl/educa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/ssl/educa.key -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/base.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/fonts.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/forms.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/login.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/rtl.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/css/widgets.css -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/img/LICENSE -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/img/README.txt -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/img/search.svg -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/actions.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/calendar.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/cancel.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/change_form.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/collapse.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/core.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/inlines.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /Chapter13/educa/static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/admin/js/urlify.js -------------------------------------------------------------------------------- /Chapter13/educa/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/static/css/base.css -------------------------------------------------------------------------------- /Chapter13/educa/students/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/admin.py -------------------------------------------------------------------------------- /Chapter13/educa/students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/apps.py -------------------------------------------------------------------------------- /Chapter13/educa/students/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/forms.py -------------------------------------------------------------------------------- /Chapter13/educa/students/management/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/management/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/students/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/students/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/students/migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/migrations/.DS_Store -------------------------------------------------------------------------------- /Chapter13/educa/students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/educa/students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/models.py -------------------------------------------------------------------------------- /Chapter13/educa/students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/tests.py -------------------------------------------------------------------------------- /Chapter13/educa/students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/urls.py -------------------------------------------------------------------------------- /Chapter13/educa/students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/Chapter13/educa/students/views.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/README.md -------------------------------------------------------------------------------- /__MACOSX/Chapter01/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/._manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/._manage.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/blog/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/blog/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/mysite/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/mysite/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter01/mysite/mysite/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter01/mysite/mysite/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/blog/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/blog/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/mysite/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/mysite/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/mysite/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/mysite/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter02/mysite/mysite/._wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter02/mysite/mysite/._wsgi.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/._manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/._manage.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._feeds.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._sitemaps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/blog/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/blog/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/mysite/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/mysite/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/mysite/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/mysite/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter03/mysite/mysite/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter03/mysite/mysite/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter04/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter04/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/bookmarks/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter04/bookmarks/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter04/bookmarks/account/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter04/bookmarks/account/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter04/bookmarks/account/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter04/bookmarks/account/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/account/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/account/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/images/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/images/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/images/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/images/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/images/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/images/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/images/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/images/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter05/bookmarks/images/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter05/bookmarks/images/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/account/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/account/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/actions/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/actions/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/images/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/images/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/images/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/images/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/images/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/images/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/images/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/images/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter06/bookmarks/images/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter06/bookmarks/images/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._cart.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/cart/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/cart/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/myshop/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/myshop/.___init__.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/myshop/._celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/myshop/._celery.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/myshop/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/myshop/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/myshop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/myshop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._tasks.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/orders/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/orders/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/.___init__.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter07/myshop/shop/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter07/myshop/shop/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._cart.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/cart/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/cart/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/myshop/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/myshop/.___init__.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/myshop/._celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/myshop/._celery.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/myshop/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/myshop/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/myshop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/myshop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._tasks.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/orders/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/orders/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/payment/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/payment/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/payment/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/payment/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/payment/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/payment/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/payment/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/payment/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/.___init__.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/shop/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/shop/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter08/myshop/static/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter08/myshop/static/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._cart.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/cart/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/cart/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/coupons/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/coupons/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/myshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/myshop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/myshop/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/myshop/.___init__.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/myshop/._celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/myshop/._celery.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/myshop/._settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/myshop/._settings.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/myshop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/myshop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/orders/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/orders/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/orders/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/orders/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/orders/._tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/orders/._tasks.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/orders/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/orders/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/orders/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/orders/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/payment/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/payment/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._models.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter09/myshop/shop/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter09/myshop/shop/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/courses/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/courses/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/courses/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/courses/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/courses/._tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/courses/._tests.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/courses/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/courses/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/courses/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/courses/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter10/educa/educa/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter10/educa/educa/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/courses/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/courses/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/courses/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/courses/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/courses/._tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/courses/._tests.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/courses/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/courses/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/courses/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/courses/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/educa/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/educa/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/students/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/students/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter11/educa/students/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter11/educa/students/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._tests.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/courses/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/courses/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/educa/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/educa/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/students/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/students/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter12/educa/students/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter12/educa/students/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/config/._uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/config/._uwsgi.ini -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._admin.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._forms.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._tests.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/courses/._views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/courses/._views.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/educa/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/educa/._.DS_Store -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/educa/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/educa/._urls.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/educa/._wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/educa/._wsgi.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/students/._apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/students/._apps.py -------------------------------------------------------------------------------- /__MACOSX/Chapter13/educa/students/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Django-2-by-Example/HEAD/__MACOSX/Chapter13/educa/students/._urls.py --------------------------------------------------------------------------------