├── src ├── account │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── serializers.cpython-37.pyc │ │ ├── urls.py │ │ ├── serializers.py │ │ └── views.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ └── 0002_auto_20190617_1641.cpython-37.pyc │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── __pycache__ │ │ ├── admin.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── views.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ └── backends.cpython-37.pyc │ ├── templates │ │ └── account │ │ │ ├── must_authenticate.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ └── account.html │ ├── admin.py │ ├── backends.py │ ├── forms.py │ ├── models.py │ └── views.py ├── blog │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── serializers.cpython-37.pyc │ │ ├── urls.py │ │ ├── serializers.py │ │ └── views.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── 0001_initial.cpython-37.pyc │ │ └── 0001_initial.py │ ├── tests.py │ ├── apps.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-37.pyc │ │ ├── forms.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── utils.cpython-37.pyc │ │ ├── views.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── urls-api.cpython-37.pyc │ │ ├── urls_api.cpython-37.pyc │ │ ├── views_api.cpython-37.pyc │ │ └── serializers.cpython-37.pyc │ ├── urls.py │ ├── utils.py │ ├── forms.py │ ├── templates │ │ └── blog │ │ │ ├── detail_blog.html │ │ │ ├── snippets │ │ │ ├── blog_post_pagination.html │ │ │ └── blog_post_snippet.html │ │ │ ├── create_blog.html │ │ │ └── edit_blog.html │ ├── models.py │ └── views.py ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── urls.cpython-37.pyc │ │ ├── wsgi.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ └── settings.cpython-37.pyc │ ├── wsgi.py │ ├── urls.py │ └── settings.py ├── personal │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0002_delete_question.cpython-37.pyc │ │ │ ├── 0002_auto_20190617_0949.cpython-37.pyc │ │ │ ├── 0003_auto_20190617_0950.cpython-37.pyc │ │ │ └── 0004_auto_20190617_0952.cpython-37.pyc │ │ ├── 0002_delete_question.py │ │ └── 0001_initial.py │ ├── admin.py │ ├── tests.py │ ├── apps.py │ ├── __pycache__ │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── views.cpython-37.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── views.py │ └── templates │ │ └── personal │ │ └── home.html ├── templates │ ├── registration │ │ ├── password_reset_subject.txt │ │ ├── password_change_done.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_email.html │ │ ├── password_reset_done.html │ │ ├── password_change.html │ │ └── password_reset_form.html │ ├── snippets │ │ ├── base_css.html │ │ ├── footer.html │ │ └── header.html │ └── base.html ├── db.sqlite3 ├── media_cdn │ └── blog │ │ ├── 1 │ │ ├── Second_Blog_post-4.png │ │ ├── Second_Blog_post-detecting_memory_leaks_thumbnail.png │ │ └── First_Blog_Post-Filtering_RecyclerView_with_SearchView.png │ │ ├── 2 │ │ └── hdhfhgh-11.png │ │ └── 3 │ │ └── gdfgdgdfg-Android_Thumbnail.png ├── static │ └── codingwithmitch_logo.png ├── static_cdn │ ├── codingwithmitch_logo.png │ └── admin │ │ ├── fonts │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ └── README.txt │ │ ├── img │ │ ├── tooltag-arrowright.svg │ │ ├── README.txt │ │ ├── tooltag-add.svg │ │ ├── icon-addlink.svg │ │ ├── icon-changelink.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-yes.svg │ │ ├── search.svg │ │ ├── icon-alert.svg │ │ ├── icon-no.svg │ │ ├── inline-delete.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-unknown.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-clock.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-calendar.svg │ │ ├── calendar-icons.svg │ │ ├── LICENSE │ │ ├── sorting-icons.svg │ │ └── selector-icons.svg │ │ ├── js │ │ ├── prepopulate.min.js │ │ ├── jquery.init.js │ │ ├── cancel.js │ │ ├── prepopulate_init.js │ │ ├── popup_response.js │ │ ├── vendor │ │ │ ├── select2 │ │ │ │ ├── i18n │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── cs.js │ │ │ │ └── LICENSE.md │ │ │ ├── xregexp │ │ │ │ └── LICENSE.txt │ │ │ └── jquery │ │ │ │ └── LICENSE.txt │ │ ├── change_form.js │ │ ├── collapse.min.js │ │ ├── autocomplete.js │ │ ├── prepopulate.js │ │ ├── collapse.js │ │ ├── actions.min.js │ │ ├── timeparse.js │ │ ├── inlines.min.js │ │ ├── SelectBox.js │ │ └── actions.js │ │ └── css │ │ ├── fonts.css │ │ ├── dashboard.css │ │ ├── vendor │ │ └── select2 │ │ │ └── LICENSE-SELECT2.md │ │ ├── login.css │ │ ├── responsive_rtl.css │ │ └── rtl.css ├── requirements.txt └── manage.py └── README.md /src/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/account/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/personal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/personal/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/personal/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | -------------------------------------------------------------------------------- /src/templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | CodingWithMitch password reset -------------------------------------------------------------------------------- /src/account/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /src/blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /src/personal/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /src/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/db.sqlite3 -------------------------------------------------------------------------------- /src/blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /src/templates/snippets/base_css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/account/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountConfig(AppConfig): 5 | name = 'account' 6 | -------------------------------------------------------------------------------- /src/personal/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PersonalConfig(AppConfig): 5 | name = 'personal' 6 | -------------------------------------------------------------------------------- /src/blog/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | from blog.models import BlogPost 4 | 5 | admin.site.register(BlogPost) 6 | -------------------------------------------------------------------------------- /src/media_cdn/blog/2/hdhfhgh-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/media_cdn/blog/2/hdhfhgh-11.png -------------------------------------------------------------------------------- /src/static/codingwithmitch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/static/codingwithmitch_logo.png -------------------------------------------------------------------------------- /src/blog/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /src/static_cdn/codingwithmitch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/static_cdn/codingwithmitch_logo.png -------------------------------------------------------------------------------- /src/blog/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /src/media_cdn/blog/1/Second_Blog_post-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/media_cdn/blog/1/Second_Blog_post-4.png -------------------------------------------------------------------------------- /src/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /src/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/urls-api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/urls-api.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/urls_api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/urls_api.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/views_api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/views_api.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/api/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/api/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/api/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/api/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /src/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/__pycache__/backends.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/__pycache__/backends.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/api/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/api/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/api/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/api/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/__pycache__/serializers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/__pycache__/serializers.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/api/__pycache__/serializers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/api/__pycache__/serializers.cpython-37.pyc -------------------------------------------------------------------------------- /src/static_cdn/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/static_cdn/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /src/media_cdn/blog/3/gdfgdgdfg-Android_Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/media_cdn/blog/3/gdfgdgdfg-Android_Thumbnail.png -------------------------------------------------------------------------------- /src/static_cdn/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/static_cdn/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /src/account/api/__pycache__/serializers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/api/__pycache__/serializers.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/static_cdn/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/static_cdn/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /src/account/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/blog/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/blog/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/0002_delete_question.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/0002_delete_question.cpython-37.pyc -------------------------------------------------------------------------------- /src/account/migrations/__pycache__/0002_auto_20190617_1641.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/account/migrations/__pycache__/0002_auto_20190617_1641.cpython-37.pyc -------------------------------------------------------------------------------- /src/media_cdn/blog/1/Second_Blog_post-detecting_memory_leaks_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/media_cdn/blog/1/Second_Blog_post-detecting_memory_leaks_thumbnail.png -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/0002_auto_20190617_0949.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/0002_auto_20190617_0949.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/0003_auto_20190617_0950.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/0003_auto_20190617_0950.cpython-37.pyc -------------------------------------------------------------------------------- /src/personal/migrations/__pycache__/0004_auto_20190617_0952.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/personal/migrations/__pycache__/0004_auto_20190617_0952.cpython-37.pyc -------------------------------------------------------------------------------- /src/media_cdn/blog/1/First_Blog_Post-Filtering_RecyclerView_with_SearchView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/CodingWithMitchBlog-REST-API/HEAD/src/media_cdn/blog/1/First_Blog_Post-Filtering_RecyclerView_with_SearchView.png -------------------------------------------------------------------------------- /src/static_cdn/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /src/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block content %} 4 | 5 |
Your password has been Updated.
8 |Your password has been reset. You may go ahead and sign in now.
9 |9 | We've emailed you instructions for setting your password, if an account exists with the email you entered. 10 | You should receive them shortly. 11 |
12 |13 | If you don't receive an email, please make sure you've entered the address you registered with, 14 | and check your spam folder. 15 |
16 | 17 |{{blog_post.body|linebreaksbr}}
26 |27 | {% if blog_post.author == request.user %} 28 | Update 29 | {% endif %} 30 |
31 | 32 |
2 | In this course you'll learn to build a REST API for a website so other technologies can interact with it.
5 |This course is a continuation of the "Building a website with Django (Python)" course. Which is a free course where I show you how to build a website like open-api.xyz.
6 |What you'll learn:
7 |{{blog_post.body|linebreaksbr|truncatechars:250}}
28 | {% if blog_post.author == request.user %} 29 | Update 30 | {% endif %} 31 |There were no results matching your search: "{{query}}".
50 |Hello, {{request.user.username}}
24 | {% endif %} 25 | 26 | 27 | 32 | 33 | 45 |
44 | In this course you'll learn how to build a simple blog with user registration and blog CRUD functionality. Django is a powerful 45 | framework and you'll see why in this course.
46 | 47 |You have no blog posts. Create a post here.
95 | {% endif %} 96 | 97 |