├── .gitattributes ├── .gitignore ├── README.md ├── django_simple_site ├── README.md ├── django_simple_site │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── manage.py ├── page │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── requierements.txt └── templates │ ├── base │ ├── base.html │ └── components │ │ ├── footer.html │ │ ├── footer_scripts.html │ │ ├── head.html │ │ └── navbar.html │ └── page │ ├── default_page.html │ └── index.html ├── kaft_clone ├── cart │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── kaft_clone │ ├── __init__.py │ ├── middleware.py │ ├── nav_context.py │ ├── settings │ │ ├── __init__.py │ │ ├── settings_base.py │ │ ├── settings_dev.py │ │ └── settings_server.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── page │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── product │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── requierements.txt ├── static │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── img │ │ ├── carousel-1.jpg │ │ ├── carousel-2.jpg │ │ └── carousel-3.jpg │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── jquery-3.3.1.slim.min.js │ │ └── popper.min.js └── templates │ ├── base │ ├── base.html │ └── components │ │ ├── footer.html │ │ ├── footer_scripts.html │ │ ├── head.html │ │ ├── message.html │ │ └── nav.html │ ├── home │ ├── carousel.html │ └── index.html │ ├── manage │ ├── carousel_list.html │ ├── form.html │ ├── manage.html │ └── page_list.html │ ├── page │ └── page.html │ └── product │ ├── category_show.html │ └── product.html └── twitter_clone ├── dump_data └── test_dump.json ├── manage.py ├── templates ├── base │ ├── base.html │ ├── footer.html │ ├── head.html │ └── messages.html ├── forget.html ├── forget_password_check.html ├── index.html ├── new_index.html ├── signup.html ├── tweet_post_show.html ├── user_posts.html └── welcome.html ├── tweet ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── 0002_auto_20190728_1251.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py └── views.py ├── twitter_clone ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py └── user_profile ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-37.pyc │ ├── 0002_auto_20190728_1124.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py ├── urls.py └── views.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/README.md -------------------------------------------------------------------------------- /django_simple_site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/README.md -------------------------------------------------------------------------------- /django_simple_site/django_simple_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_simple_site/django_simple_site/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/django_simple_site/settings.py -------------------------------------------------------------------------------- /django_simple_site/django_simple_site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/django_simple_site/urls.py -------------------------------------------------------------------------------- /django_simple_site/django_simple_site/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/django_simple_site/views.py -------------------------------------------------------------------------------- /django_simple_site/django_simple_site/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/django_simple_site/wsgi.py -------------------------------------------------------------------------------- /django_simple_site/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/manage.py -------------------------------------------------------------------------------- /django_simple_site/page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_simple_site/page/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/admin.py -------------------------------------------------------------------------------- /django_simple_site/page/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/apps.py -------------------------------------------------------------------------------- /django_simple_site/page/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_simple_site/page/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/models.py -------------------------------------------------------------------------------- /django_simple_site/page/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/tests.py -------------------------------------------------------------------------------- /django_simple_site/page/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/urls.py -------------------------------------------------------------------------------- /django_simple_site/page/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/page/views.py -------------------------------------------------------------------------------- /django_simple_site/requierements.txt: -------------------------------------------------------------------------------- 1 | Django==2.2.3 2 | pytz==2019.1 3 | sqlparse==0.3.0 4 | -------------------------------------------------------------------------------- /django_simple_site/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/base/base.html -------------------------------------------------------------------------------- /django_simple_site/templates/base/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/base/components/footer.html -------------------------------------------------------------------------------- /django_simple_site/templates/base/components/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/base/components/footer_scripts.html -------------------------------------------------------------------------------- /django_simple_site/templates/base/components/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/base/components/head.html -------------------------------------------------------------------------------- /django_simple_site/templates/base/components/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/base/components/navbar.html -------------------------------------------------------------------------------- /django_simple_site/templates/page/default_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/page/default_page.html -------------------------------------------------------------------------------- /django_simple_site/templates/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/django_simple_site/templates/page/index.html -------------------------------------------------------------------------------- /kaft_clone/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/admin.py -------------------------------------------------------------------------------- /kaft_clone/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/apps.py -------------------------------------------------------------------------------- /kaft_clone/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/models.py -------------------------------------------------------------------------------- /kaft_clone/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/tests.py -------------------------------------------------------------------------------- /kaft_clone/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/urls.py -------------------------------------------------------------------------------- /kaft_clone/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/cart/views.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/middleware.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/nav_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/nav_context.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/settings/__init__.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/settings/settings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/settings/settings_base.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/settings/settings_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/settings/settings_dev.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/settings/settings_server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/urls.py -------------------------------------------------------------------------------- /kaft_clone/kaft_clone/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/kaft_clone/wsgi.py -------------------------------------------------------------------------------- /kaft_clone/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/manage.py -------------------------------------------------------------------------------- /kaft_clone/page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/page/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/admin.py -------------------------------------------------------------------------------- /kaft_clone/page/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/apps.py -------------------------------------------------------------------------------- /kaft_clone/page/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/forms.py -------------------------------------------------------------------------------- /kaft_clone/page/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/page/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/models.py -------------------------------------------------------------------------------- /kaft_clone/page/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/tests.py -------------------------------------------------------------------------------- /kaft_clone/page/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/urls.py -------------------------------------------------------------------------------- /kaft_clone/page/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/page/views.py -------------------------------------------------------------------------------- /kaft_clone/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/product/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/product/admin.py -------------------------------------------------------------------------------- /kaft_clone/product/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/product/apps.py -------------------------------------------------------------------------------- /kaft_clone/product/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kaft_clone/product/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/product/models.py -------------------------------------------------------------------------------- /kaft_clone/product/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/product/tests.py -------------------------------------------------------------------------------- /kaft_clone/product/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/product/views.py -------------------------------------------------------------------------------- /kaft_clone/requierements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/requierements.txt -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /kaft_clone/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /kaft_clone/static/img/carousel-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/img/carousel-1.jpg -------------------------------------------------------------------------------- /kaft_clone/static/img/carousel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/img/carousel-2.jpg -------------------------------------------------------------------------------- /kaft_clone/static/img/carousel-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/img/carousel-3.jpg -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.js -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /kaft_clone/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /kaft_clone/static/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /kaft_clone/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/static/js/popper.min.js -------------------------------------------------------------------------------- /kaft_clone/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/base.html -------------------------------------------------------------------------------- /kaft_clone/templates/base/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/components/footer.html -------------------------------------------------------------------------------- /kaft_clone/templates/base/components/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/components/footer_scripts.html -------------------------------------------------------------------------------- /kaft_clone/templates/base/components/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/components/head.html -------------------------------------------------------------------------------- /kaft_clone/templates/base/components/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/components/message.html -------------------------------------------------------------------------------- /kaft_clone/templates/base/components/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/base/components/nav.html -------------------------------------------------------------------------------- /kaft_clone/templates/home/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/home/carousel.html -------------------------------------------------------------------------------- /kaft_clone/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/home/index.html -------------------------------------------------------------------------------- /kaft_clone/templates/manage/carousel_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/manage/carousel_list.html -------------------------------------------------------------------------------- /kaft_clone/templates/manage/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/manage/form.html -------------------------------------------------------------------------------- /kaft_clone/templates/manage/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/manage/manage.html -------------------------------------------------------------------------------- /kaft_clone/templates/manage/page_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/manage/page_list.html -------------------------------------------------------------------------------- /kaft_clone/templates/page/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/page/page.html -------------------------------------------------------------------------------- /kaft_clone/templates/product/category_show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/product/category_show.html -------------------------------------------------------------------------------- /kaft_clone/templates/product/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/kaft_clone/templates/product/product.html -------------------------------------------------------------------------------- /twitter_clone/dump_data/test_dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/dump_data/test_dump.json -------------------------------------------------------------------------------- /twitter_clone/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/manage.py -------------------------------------------------------------------------------- /twitter_clone/templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/base/base.html -------------------------------------------------------------------------------- /twitter_clone/templates/base/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/base/footer.html -------------------------------------------------------------------------------- /twitter_clone/templates/base/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/base/head.html -------------------------------------------------------------------------------- /twitter_clone/templates/base/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/base/messages.html -------------------------------------------------------------------------------- /twitter_clone/templates/forget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/forget.html -------------------------------------------------------------------------------- /twitter_clone/templates/forget_password_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/forget_password_check.html -------------------------------------------------------------------------------- /twitter_clone/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/index.html -------------------------------------------------------------------------------- /twitter_clone/templates/new_index.html: -------------------------------------------------------------------------------- 1 | new index -------------------------------------------------------------------------------- /twitter_clone/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/signup.html -------------------------------------------------------------------------------- /twitter_clone/templates/tweet_post_show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/tweet_post_show.html -------------------------------------------------------------------------------- /twitter_clone/templates/user_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/user_posts.html -------------------------------------------------------------------------------- /twitter_clone/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/templates/welcome.html -------------------------------------------------------------------------------- /twitter_clone/tweet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter_clone/tweet/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/admin.py -------------------------------------------------------------------------------- /twitter_clone/tweet/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/apps.py -------------------------------------------------------------------------------- /twitter_clone/tweet/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter_clone/tweet/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/tweet/migrations/__pycache__/0002_auto_20190728_1251.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/migrations/__pycache__/0002_auto_20190728_1251.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/tweet/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/tweet/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/models.py -------------------------------------------------------------------------------- /twitter_clone/tweet/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/tests.py -------------------------------------------------------------------------------- /twitter_clone/tweet/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/tweet/views.py -------------------------------------------------------------------------------- /twitter_clone/twitter_clone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter_clone/twitter_clone/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/twitter_clone/settings.py -------------------------------------------------------------------------------- /twitter_clone/twitter_clone/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/twitter_clone/urls.py -------------------------------------------------------------------------------- /twitter_clone/twitter_clone/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/twitter_clone/views.py -------------------------------------------------------------------------------- /twitter_clone/twitter_clone/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/twitter_clone/wsgi.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter_clone/user_profile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/admin.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/apps.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter_clone/user_profile/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/user_profile/migrations/__pycache__/0002_auto_20190728_1124.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/migrations/__pycache__/0002_auto_20190728_1124.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/user_profile/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /twitter_clone/user_profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/models.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/tests.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/urls.py -------------------------------------------------------------------------------- /twitter_clone/user_profile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakanyalcinkaya/kodluyoruz-org-python-ve-django-egitimi/HEAD/twitter_clone/user_profile/views.py --------------------------------------------------------------------------------