├── .gitignore ├── .idea ├── .gitignore ├── django-projects.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── desktop.ini ├── folderico-green.ico ├── sabzshop ├── .idea │ ├── .gitignore │ ├── dataSources.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── sabzshop.iml │ ├── vcs.xml │ └── workspace.xml ├── __pycache__ │ └── manage.cpython-311.pyc ├── account │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ ├── forms.cpython-311.pyc │ │ └── models.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_shopuser_date_joined.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── api │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ └── serializers.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── cart │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ └── models.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── cart.py │ ├── common │ │ └── KaveSms.py │ ├── context_processors.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── cart │ │ │ └── detail.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── images │ ├── product-1.jpg │ └── product_images │ │ ├── 2023 │ │ └── 12 │ │ │ ├── 14 │ │ │ ├── 359177.jpg │ │ │ └── 447663.jpg │ │ │ └── 03 │ │ │ ├── Ostbager.jpg │ │ │ └── unnamed-3-2.jpg │ │ └── 2024 │ │ └── 05 │ │ ├── 11 │ │ ├── cpp_1.png │ │ ├── download.jpg │ │ ├── product-1.jpg │ │ ├── product-grey-2.jpg │ │ ├── product-grey-3.jpg │ │ └── product-grey-8.jpg │ │ ├── 12 │ │ └── product-grey-1.jpg │ │ └── 26 │ │ └── 985685.jpg ├── manage.py ├── orders │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ └── models.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_order_name_order_firs_name_order_last_name.py │ │ ├── 0003_rename_firs_name_order_first_name.py │ │ ├── 0004_order_buyer.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── order-detail.html │ │ ├── order_create.html │ │ ├── orders-list.html │ │ ├── payment-tracking.html │ │ ├── verify_code.html │ │ └── verify_phone.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── sabzshop │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── settings.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── wsgi.cpython-311.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── shop │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── admin.cpython-311.pyc │ ├── apps.cpython-311.pyc │ ├── models.cpython-311.pyc │ └── signals.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_product_features_productfeature_product.py │ ├── 0003_product_weight_alter_productfeature_product.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-311.pyc │ │ ├── 0002_remove_product_features_productfeature_product.cpython-311.pyc │ │ └── __init__.cpython-311.pyc │ ├── models.py │ ├── signals.py │ ├── static │ ├── css │ │ ├── animate │ │ │ └── animate.min.css │ │ ├── bootstrap-star-rating │ │ │ ├── star-rating.css │ │ │ ├── star-rating.min.css │ │ │ ├── theme.css │ │ │ ├── theme.js │ │ │ ├── theme.min.css │ │ │ └── theme.min.js │ │ ├── bootstrap │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── custom.css │ │ ├── farsi-fonts-styles │ │ │ ├── primary-iran-yekan.css │ │ │ └── secondary-pinar.css │ │ ├── fontawesome-free │ │ │ └── all.min.css │ │ ├── fonts │ │ │ └── farsi-fonts │ │ │ │ ├── aviny-700.eot │ │ │ │ ├── aviny-700.ttf │ │ │ │ ├── aviny-700.woff │ │ │ │ ├── aviny-700.woff2 │ │ │ │ ├── azarmehr-300.eot │ │ │ │ ├── azarmehr-300.ttf │ │ │ │ ├── azarmehr-300.woff │ │ │ │ ├── azarmehr-300.woff2 │ │ │ │ ├── azarmehr-400.eot │ │ │ │ ├── azarmehr-400.ttf │ │ │ │ ├── azarmehr-400.woff │ │ │ │ ├── azarmehr-400.woff2 │ │ │ │ ├── azarmehr-500.eot │ │ │ │ ├── azarmehr-500.ttf │ │ │ │ ├── azarmehr-500.woff │ │ │ │ ├── azarmehr-500.woff2 │ │ │ │ ├── azarmehr-700.eot │ │ │ │ ├── azarmehr-700.ttf │ │ │ │ ├── azarmehr-700.woff │ │ │ │ ├── azarmehr-700.woff2 │ │ │ │ ├── damavand-700.eot │ │ │ │ ├── damavand-700.ttf │ │ │ │ ├── damavand-700.woff │ │ │ │ ├── damavand-700.woff2 │ │ │ │ ├── dana-400.eot │ │ │ │ ├── dana-400.ttf │ │ │ │ ├── dana-400.woff │ │ │ │ ├── dana-400.woff2 │ │ │ │ ├── dana-700.eot │ │ │ │ ├── dana-700.ttf │ │ │ │ ├── dana-700.woff │ │ │ │ ├── dana-700.woff2 │ │ │ │ ├── dastnevis-400.eot │ │ │ │ ├── dastnevis-400.ttf │ │ │ │ ├── dastnevis-400.woff │ │ │ │ ├── dastnevis-400.woff2 │ │ │ │ ├── droid-naskh-400.eot │ │ │ │ ├── droid-naskh-400.ttf │ │ │ │ ├── droid-naskh-400.woff │ │ │ │ ├── droid-naskh-400.woff2 │ │ │ │ ├── dubai-300.eot │ │ │ │ ├── dubai-300.ttf │ │ │ │ ├── dubai-300.woff │ │ │ │ ├── dubai-300.woff2 │ │ │ │ ├── dubai-400.eot │ │ │ │ ├── dubai-400.ttf │ │ │ │ ├── dubai-400.woff │ │ │ │ ├── dubai-400.woff2 │ │ │ │ ├── dubai-500.eot │ │ │ │ ├── dubai-500.ttf │ │ │ │ ├── dubai-500.woff │ │ │ │ ├── dubai-500.woff2 │ │ │ │ ├── dubai-700.eot │ │ │ │ ├── dubai-700.ttf │ │ │ │ ├── dubai-700.woff │ │ │ │ ├── dubai-700.woff2 │ │ │ │ ├── estedad-300.eot │ │ │ │ ├── estedad-300.ttf │ │ │ │ ├── estedad-300.woff │ │ │ │ ├── estedad-300.woff2 │ │ │ │ ├── estedad-400.eot │ │ │ │ ├── estedad-400.ttf │ │ │ │ ├── estedad-400.woff │ │ │ │ ├── estedad-400.woff2 │ │ │ │ ├── estedad-500.eot │ │ │ │ ├── estedad-500.ttf │ │ │ │ ├── estedad-500.woff │ │ │ │ ├── estedad-500.woff2 │ │ │ │ ├── estedad-700.eot │ │ │ │ ├── estedad-700.ttf │ │ │ │ ├── estedad-700.woff │ │ │ │ ├── estedad-700.woff2 │ │ │ │ ├── gandom-400.eot │ │ │ │ ├── gandom-400.ttf │ │ │ │ ├── gandom-400.woff │ │ │ │ ├── gandom-400.woff2 │ │ │ │ ├── helvetica-neue-300.eot │ │ │ │ ├── helvetica-neue-300.ttf │ │ │ │ ├── helvetica-neue-300.woff │ │ │ │ ├── helvetica-neue-300.woff2 │ │ │ │ ├── helvetica-neue-400.eot │ │ │ │ ├── helvetica-neue-400.ttf │ │ │ │ ├── helvetica-neue-400.woff │ │ │ │ ├── helvetica-neue-400.woff2 │ │ │ │ ├── helvetica-neue-700.eot │ │ │ │ ├── helvetica-neue-700.ttf │ │ │ │ ├── helvetica-neue-700.woff │ │ │ │ ├── helvetica-neue-700.woff2 │ │ │ │ ├── iran-sans-300.eot │ │ │ │ ├── iran-sans-300.ttf │ │ │ │ ├── iran-sans-300.woff │ │ │ │ ├── iran-sans-300.woff2 │ │ │ │ ├── iran-sans-400.eot │ │ │ │ ├── iran-sans-400.ttf │ │ │ │ ├── iran-sans-400.woff │ │ │ │ ├── iran-sans-400.woff2 │ │ │ │ ├── iran-sans-500.eot │ │ │ │ ├── iran-sans-500.ttf │ │ │ │ ├── iran-sans-500.woff │ │ │ │ ├── iran-sans-500.woff2 │ │ │ │ ├── iran-sans-700.eot │ │ │ │ ├── iran-sans-700.ttf │ │ │ │ ├── iran-sans-700.woff │ │ │ │ ├── iran-sans-700.woff2 │ │ │ │ ├── iran-yekan-300.eot │ │ │ │ ├── iran-yekan-300.ttf │ │ │ │ ├── iran-yekan-300.woff │ │ │ │ ├── iran-yekan-300.woff2 │ │ │ │ ├── iran-yekan-400.eot │ │ │ │ ├── iran-yekan-400.ttf │ │ │ │ ├── iran-yekan-400.woff │ │ │ │ ├── iran-yekan-400.woff2 │ │ │ │ ├── iran-yekan-500.eot │ │ │ │ ├── iran-yekan-500.ttf │ │ │ │ ├── iran-yekan-500.woff │ │ │ │ ├── iran-yekan-500.woff2 │ │ │ │ ├── iran-yekan-700.eot │ │ │ │ ├── iran-yekan-700.ttf │ │ │ │ ├── iran-yekan-700.woff │ │ │ │ ├── iran-yekan-700.woff2 │ │ │ │ ├── lalezar-700.eot │ │ │ │ ├── lalezar-700.ttf │ │ │ │ ├── lalezar-700.woff │ │ │ │ ├── lalezar-700.woff2 │ │ │ │ ├── mikhak-300.eot │ │ │ │ ├── mikhak-300.ttf │ │ │ │ ├── mikhak-300.woff │ │ │ │ ├── mikhak-300.woff2 │ │ │ │ ├── mikhak-400.eot │ │ │ │ ├── mikhak-400.ttf │ │ │ │ ├── mikhak-400.woff │ │ │ │ ├── mikhak-400.woff2 │ │ │ │ ├── mikhak-700.eot │ │ │ │ ├── mikhak-700.ttf │ │ │ │ ├── mikhak-700.woff │ │ │ │ ├── mikhak-700.woff2 │ │ │ │ ├── myriad-400.eot │ │ │ │ ├── myriad-400.ttf │ │ │ │ ├── myriad-400.woff │ │ │ │ ├── myriad-400.woff2 │ │ │ │ ├── myriad-700.eot │ │ │ │ ├── myriad-700.ttf │ │ │ │ ├── myriad-700.woff │ │ │ │ ├── myriad-700.woff2 │ │ │ │ ├── neirizi-400.eot │ │ │ │ ├── neirizi-400.ttf │ │ │ │ ├── neirizi-400.woff │ │ │ │ ├── neirizi-400.woff2 │ │ │ │ ├── noora-300.eot │ │ │ │ ├── noora-300.ttf │ │ │ │ ├── noora-300.woff │ │ │ │ ├── noora-300.woff2 │ │ │ │ ├── noora-400.eot │ │ │ │ ├── noora-400.ttf │ │ │ │ ├── noora-400.woff │ │ │ │ ├── noora-400.woff2 │ │ │ │ ├── noora-700.eot │ │ │ │ ├── noora-700.ttf │ │ │ │ ├── noora-700.woff │ │ │ │ ├── noora-700.woff2 │ │ │ │ ├── palatino-sans-400.eot │ │ │ │ ├── palatino-sans-400.ttf │ │ │ │ ├── palatino-sans-400.woff │ │ │ │ ├── palatino-sans-400.woff2 │ │ │ │ ├── palatino-sans-700.eot │ │ │ │ ├── palatino-sans-700.ttf │ │ │ │ ├── palatino-sans-700.woff │ │ │ │ ├── palatino-sans-700.woff2 │ │ │ │ ├── pinar-300.eot │ │ │ │ ├── pinar-300.ttf │ │ │ │ ├── pinar-300.woff │ │ │ │ ├── pinar-300.woff2 │ │ │ │ ├── pinar-400.eot │ │ │ │ ├── pinar-400.ttf │ │ │ │ ├── pinar-400.woff │ │ │ │ ├── pinar-400.woff2 │ │ │ │ ├── pinar-500.eot │ │ │ │ ├── pinar-500.ttf │ │ │ │ ├── pinar-500.woff │ │ │ │ ├── pinar-500.woff2 │ │ │ │ ├── pinar-700.eot │ │ │ │ ├── pinar-700.ttf │ │ │ │ ├── pinar-700.woff │ │ │ │ ├── pinar-700.woff2 │ │ │ │ ├── sahel-300.eot │ │ │ │ ├── sahel-300.ttf │ │ │ │ ├── sahel-300.woff │ │ │ │ ├── sahel-300.woff2 │ │ │ │ ├── sahel-400.eot │ │ │ │ ├── sahel-400.ttf │ │ │ │ ├── sahel-400.woff │ │ │ │ ├── sahel-400.woff2 │ │ │ │ ├── sahel-700.eot │ │ │ │ ├── sahel-700.ttf │ │ │ │ ├── sahel-700.woff │ │ │ │ ├── sahel-700.woff2 │ │ │ │ ├── shabnam-300.eot │ │ │ │ ├── shabnam-300.ttf │ │ │ │ ├── shabnam-300.woff │ │ │ │ ├── shabnam-300.woff2 │ │ │ │ ├── shabnam-400.eot │ │ │ │ ├── shabnam-400.ttf │ │ │ │ ├── shabnam-400.woff │ │ │ │ ├── shabnam-400.woff2 │ │ │ │ ├── shabnam-500.eot │ │ │ │ ├── shabnam-500.ttf │ │ │ │ ├── shabnam-500.woff │ │ │ │ ├── shabnam-500.woff2 │ │ │ │ ├── shabnam-700.eot │ │ │ │ ├── shabnam-700.ttf │ │ │ │ ├── shabnam-700.woff │ │ │ │ ├── shabnam-700.woff2 │ │ │ │ ├── vanda-300.eot │ │ │ │ ├── vanda-300.ttf │ │ │ │ ├── vanda-300.woff │ │ │ │ ├── vanda-300.woff2 │ │ │ │ ├── vanda-400.eot │ │ │ │ ├── vanda-400.ttf │ │ │ │ ├── vanda-400.woff │ │ │ │ ├── vanda-400.woff2 │ │ │ │ ├── vanda-500.eot │ │ │ │ ├── vanda-500.ttf │ │ │ │ ├── vanda-500.woff │ │ │ │ ├── vanda-500.woff2 │ │ │ │ ├── vazir-300.eot │ │ │ │ ├── vazir-300.ttf │ │ │ │ ├── vazir-300.woff │ │ │ │ ├── vazir-300.woff2 │ │ │ │ ├── vazir-400.eot │ │ │ │ ├── vazir-400.ttf │ │ │ │ ├── vazir-400.woff │ │ │ │ ├── vazir-400.woff2 │ │ │ │ ├── vazir-500.eot │ │ │ │ ├── vazir-500.ttf │ │ │ │ ├── vazir-500.woff │ │ │ │ ├── vazir-500.woff2 │ │ │ │ ├── vazir-700.eot │ │ │ │ ├── vazir-700.ttf │ │ │ │ ├── vazir-700.woff │ │ │ │ ├── vazir-700.woff2 │ │ │ │ ├── yekan-400.eot │ │ │ │ ├── yekan-400.ttf │ │ │ │ ├── yekan-400.woff │ │ │ │ └── yekan-400.woff2 │ │ ├── magnific-popup │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── magnific-popup.css │ │ │ └── magnific-popup.min.css │ │ ├── owl-carousel │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── simple-line-icons │ │ │ ├── simple-line-icons.css │ │ │ └── simple-line-icons.min.css │ │ ├── skins │ │ │ └── default.css │ │ ├── theme-blog.css │ │ ├── theme-elements.css │ │ ├── theme-shop.css │ │ ├── theme.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── img │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── icon-cart-big.svg │ │ └── product-grey-1.jpg │ ├── js │ │ ├── bootstrap-star-rating │ │ │ ├── fa.js │ │ │ ├── krajee-fas │ │ │ │ ├── theme.css │ │ │ │ ├── theme.js │ │ │ │ ├── theme.min.css │ │ │ │ └── theme.min.js │ │ │ ├── star-rating.js │ │ │ └── star-rating.min.js │ │ ├── bootstrap │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── common │ │ │ ├── common.init.js │ │ │ ├── common.js │ │ │ └── common.min.js │ │ ├── custom.js │ │ ├── isotope │ │ │ └── jquery.isotope.min.js │ │ ├── jquery.appear │ │ │ ├── jquery.appear.js │ │ │ └── jquery.appear.min.js │ │ ├── jquery.cookie │ │ │ ├── jquery.cookie.js │ │ │ └── jquery.cookie.min.js │ │ ├── jquery.easing │ │ │ └── jquery.easing.min.js │ │ ├── jquery.easy-pie-chart │ │ │ ├── angular.easypiechart.js │ │ │ ├── angular.easypiechart.min.js │ │ │ ├── easypiechart.js │ │ │ ├── easypiechart.min.js │ │ │ ├── jquery.easypiechart.js │ │ │ └── jquery.easypiechart.min.js │ │ ├── jquery.gmap │ │ │ ├── jquery.gmap.js │ │ │ └── jquery.gmap.min.js │ │ ├── jquery.lazyload │ │ │ ├── jquery.lazyload.js │ │ │ └── jquery.lazyload.min.js │ │ ├── jquery.validation │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── jquery │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── magnific-popup │ │ │ ├── jquery.magnific-popup.js │ │ │ ├── jquery.magnific-popup.min.js │ │ │ ├── magnific-popup.css │ │ │ └── magnific-popup.min.css │ │ ├── owl.carousel │ │ │ ├── owl.carousel.js │ │ │ └── owl.carousel.min.js │ │ ├── popper │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.js.map │ │ │ ├── popper-utils.min.js │ │ │ ├── popper-utils.min.js.map │ │ │ ├── popper.js │ │ │ ├── popper.js.flow │ │ │ ├── popper.js.map │ │ │ ├── popper.min.js │ │ │ └── popper.min.js.map │ │ ├── theme.init.js │ │ ├── theme.js │ │ ├── vide │ │ │ ├── jquery.vide.js │ │ │ └── jquery.vide.min.js │ │ ├── views │ │ │ ├── view.contact.js │ │ │ ├── view.home.js │ │ │ └── view.shop.js │ │ └── vivus │ │ │ ├── vivus.js │ │ │ └── vivus.min.js │ └── modernizr │ │ └── modernizr.min.js │ ├── templates │ ├── parent │ │ └── base.html │ ├── partials │ │ ├── footer.html │ │ ├── header.html │ │ └── navigation.html │ └── shop │ │ ├── detail.html │ │ ├── index.html │ │ └── list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── sabzsocial ├── .idea │ ├── .gitignore │ ├── dataSources.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── jsLibraryMappings.xml │ ├── misc.xml │ ├── modules.xml │ ├── sabzsocial.iml │ └── vcs.xml ├── __pycache__ │ └── manage.cpython-311.pyc ├── chat │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── chat │ │ │ ├── access_denied.html │ │ │ └── chat.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── images │ ├── account_images │ │ ├── love-descriptive.jpg │ │ ├── love-descriptive.jpg.150x0_q90.jpg │ │ ├── love-descriptive.jpg.500x0_q85_crop-smart.jpg │ │ ├── love-descriptive.jpg.500x500_q85_crop-0,0.jpg │ │ ├── love-descriptive.jpg.500x500_q85_crop-smart.jpg │ │ ├── love-descriptive.jpg.500x500_q85_crop.jpg │ │ ├── love-descriptive.jpg.50x50_q85_crop.jpg │ │ ├── medium-anime-profile-guy-boku-no-hero-academy-matte-finish-original-imag_eT6UQAJ.webp │ │ ├── medium-anime-profile-guy-boku-no-hero-academy-matte-finish-original-imag_eT6UQAJ.webp.150x0_q90.jpg │ │ ├── medium-anime-profile-guy-boku-no-hero-academy-matte-finish-original-imag_eT6UQAJ.webp.500x500_q85_crop-0,0.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_JNW4sBZ.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_JNW4sBZ.jpg.150x0_q90.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_TI7qecn.jpg.150x0_q90.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_W58cffP.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_W58cffP.jpg.150x0_q90.jpg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_W58cffP.jpg.500x500_q85_crop-0,0.jpg │ │ ├── pngtree-the-anime-girl-in-the-hoodie-has-very-nice-eyes-picture-image_2706794.jpg │ │ ├── pngtree-the-anime-girl-in-the-hoodie-has-very-nice-eyes-picture-image_2706794.jpg.150x0_q90.jpg │ │ ├── py-django_2.webp │ │ ├── py-django_2.webp.150x0_q90.jpg │ │ └── py-django_2.webp.500x500_q85_crop-0,0.jpg │ └── post_images │ │ ├── 121352.jpg │ │ ├── 121352_0UXysaU.jpg │ │ ├── 19C1037_002-scaled-1-1350x900.webp │ │ ├── 360_F_548848756_IlV9Y9HV8chb6mSuc3PBamYRT9gIn8Vo.jpg │ │ ├── 96f768c59834ac1495735493dbd70e74.jpg │ │ ├── best-love-quotes-romantic-inspirational-deep-pink-tout-dd7b4c00b3454c90b1c75_oTWJlTw.jpg │ │ ├── love-descriptive.jpg │ │ ├── man-walking-dog.jpg │ │ ├── man-walking-dog_MynhQo6.jpg │ │ ├── nody-عکس-طبیعت-زیبا-و-شیک-1623754460.jpg │ │ ├── py-django.webp │ │ ├── py-snake.png │ │ └── python.jpg ├── manage.py ├── sabzsocial │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── settings.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── wsgi.cpython-311.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── social │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── admin.cpython-311.pyc │ ├── apps.cpython-311.pyc │ ├── forms.cpython-311.pyc │ ├── models.cpython-311.pyc │ ├── signals.cpython-311.pyc │ ├── urls.cpython-311.pyc │ └── views.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── authentication.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_post.py │ ├── 0003_post_tags.py │ ├── 0004_post_likes.py │ ├── 0005_post_saved_by.py │ ├── 0006_contact.py │ ├── 0007_user_following.py │ ├── 0008_image.py │ ├── 0009_alter_post_saved_by.py │ ├── 0010_post_total_likes_post_social_post_total_l_b22ce0_idx.py │ ├── 0011_post_active.py │ ├── 0012_post_total_saves.py │ ├── 0013_comment.py │ ├── 0014_alter_comment_name.py │ ├── 0015_alter_comment_active.py │ ├── 0016_alter_user_date_joined.py │ ├── 0017_alter_user_date_joined.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-311.pyc │ │ ├── 0002_post.cpython-311.pyc │ │ ├── 0003_post_tags.cpython-311.pyc │ │ └── __init__.cpython-311.pyc │ ├── models.py │ ├── signals.py │ ├── static │ ├── css │ │ ├── animate.min.html │ │ ├── base.css │ │ ├── bootstrap.min.css │ │ ├── demos │ │ │ ├── interest.css │ │ │ └── photo.css │ │ ├── font.css │ │ ├── fontawesome-all.min.css │ │ ├── skins │ │ │ ├── skin_one.css │ │ │ └── skin_two.css │ │ └── style.css │ ├── fonts │ │ ├── Anurati-Regular.otf │ │ ├── IRANSansWeb.eot │ │ ├── IRANSansWeb.svg │ │ ├── IRANSansWeb.ttf │ │ ├── IRANSansWeb.woff │ │ ├── IRANSansWeb.woff2 │ │ ├── IRANSansWeb_Bold.eot │ │ ├── IRANSansWeb_Bold.svg │ │ ├── IRANSansWeb_Bold.ttf │ │ ├── IRANSansWeb_Bold.woff │ │ ├── IRANSansWeb_Bold.woff2 │ │ ├── IRANSansWeb_Light.eot │ │ ├── IRANSansWeb_Light.svg │ │ ├── IRANSansWeb_Light.ttf │ │ ├── IRANSansWeb_Light.woff │ │ ├── IRANSansWeb_Light.woff2 │ │ ├── IRANSansWeb_Medium.eot │ │ ├── IRANSansWeb_Medium.svg │ │ ├── IRANSansWeb_Medium.ttf │ │ ├── IRANSansWeb_Medium.woff │ │ ├── IRANSansWeb_Medium.woff2 │ │ ├── IRANSansWeb_UltraLight.eot │ │ ├── IRANSansWeb_UltraLight.svg │ │ ├── IRANSansWeb_UltraLight.ttf │ │ ├── IRANSansWeb_UltraLight.woff │ │ ├── IRANSansWeb_UltraLight.woff2 │ │ ├── fontawesome-webfont3e6e.eot │ │ ├── fontawesome-webfont3e6e.svg │ │ ├── fontawesome-webfont3e6e.ttf │ │ ├── fontawesome-webfont3e6e.woff │ │ ├── fontawesome-webfont3e6e.woff2 │ │ ├── fontawesome-webfontd41d.eot │ │ ├── glyphicons-halflings-regular-2.html │ │ ├── glyphicons-halflings-regular-3.html │ │ ├── glyphicons-halflings-regular-4.html │ │ ├── glyphicons-halflings-regular-5.html │ │ ├── glyphicons-halflings-regular.html │ │ └── glyphicons-halflings-regulard41d.html │ ├── images │ │ └── profile │ │ │ ├── Avatar.png │ │ │ ├── avatar2.png │ │ │ └── avatar2.webp │ ├── img │ │ ├── arrowup.html │ │ ├── bg │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ └── 2.jpg │ │ ├── demo │ │ │ ├── 1.jpg │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.jpg │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.jpg │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.jpg │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ └── more.jpg │ │ ├── favicons │ │ │ ├── apple-touch-icon-114x114.html │ │ │ ├── apple-touch-icon-72x72.html │ │ │ └── apple-touch-icon.html │ │ ├── fluffs │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── logo.html │ │ ├── posts │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.gif │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 2.gif │ │ │ ├── 20.jpg │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 27.jpg │ │ │ ├── 28.jpg │ │ │ ├── 3.gif │ │ │ ├── 30.jpg │ │ │ ├── 31.jpg │ │ │ ├── 32.jpg │ │ │ ├── 36.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ └── users │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ ├── js │ │ ├── base.js │ │ ├── bootstrap.min.js │ │ ├── jquery.min.js │ │ └── modernizr-custom.html │ ├── plugins │ │ └── slimscroll │ │ │ └── jquery.slimscroll.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-brands-400d41d.eot │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-regular-400d41d.eot │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ └── fa-solid-900d41d.eot │ ├── templates │ ├── forms │ │ ├── create-post.html │ │ └── ticket.html │ ├── parent │ │ └── base.html │ ├── partials │ │ ├── footer.html │ │ ├── header.html │ │ ├── my-modal.html │ │ └── navigation.html │ ├── registration │ │ ├── edit_user.html │ │ ├── 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 │ │ ├── register.html │ │ └── register_done.html │ ├── social │ │ ├── detail.html │ │ ├── list.html │ │ ├── list_ajax.html │ │ └── profile.html │ └── user │ │ ├── user_detail.html │ │ └── user_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── sabzweb ├── .idea │ ├── .gitignore │ ├── dataSources.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── sabzweb.iml │ └── vcs.xml ├── __pycache__ │ └── manage.cpython-311.pyc ├── blog │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── apps.cpython-311.pyc │ │ ├── forms.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── urls.cpython-311.pyc │ │ └── views.cpython-311.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_post_options.py │ │ ├── 0003_alter_post_options_alter_post_author_and_more.py │ │ ├── 0004_ticket.py │ │ ├── 0005_alter_ticket_options_comment_and_more.py │ │ ├── 0006_post_reading_time_alter_comment_active_and_more.py │ │ ├── 0007_alter_comment_created_alter_comment_updated_and_more.py │ │ ├── 0008_alter_comment_created_alter_comment_updated_and_more.py │ │ ├── 0009_image_image_blog_image_created_1ba45b_idx.py │ │ ├── 0010_alter_image_image_file_alter_image_post.py │ │ ├── 0011_alter_image_image_file.py │ │ ├── 0012_alter_image_image_file.py │ │ ├── 0013_alter_image_image_file.py │ │ ├── 0014_account.py │ │ ├── 0015_delete_account.py │ │ ├── 0016_account.py │ │ ├── 0017_post_category.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-311.pyc │ │ │ ├── 0002_alter_post_options.cpython-311.pyc │ │ │ ├── 0003_alter_post_options_alter_post_author_and_more.cpython-311.pyc │ │ │ ├── 0004_ticket.cpython-311.pyc │ │ │ ├── 0005_alter_ticket_options_comment_and_more.cpython-311.pyc │ │ │ ├── 0006_post_reading_time_alter_comment_active_and_more.cpython-311.pyc │ │ │ ├── 0007_alter_comment_created_alter_comment_updated_and_more.cpython-311.pyc │ │ │ ├── 0008_alter_comment_created_alter_comment_updated_and_more.cpython-311.pyc │ │ │ ├── 0009_image_image_blog_image_created_1ba45b_idx.cpython-311.pyc │ │ │ ├── 0010_alter_image_image_file_alter_image_post.cpython-311.pyc │ │ │ ├── 0011_alter_image_image_file.cpython-311.pyc │ │ │ ├── 0012_alter_image_image_file.cpython-311.pyc │ │ │ ├── 0013_alter_image_image_file.cpython-311.pyc │ │ │ ├── 0014_account.cpython-311.pyc │ │ │ ├── 0015_delete_account.cpython-311.pyc │ │ │ ├── 0016_account.cpython-311.pyc │ │ │ ├── 0017_post_category.cpython-311.pyc │ │ │ └── __init__.cpython-311.pyc │ ├── models.py │ ├── static │ │ ├── css │ │ │ └── base.css │ │ ├── fonts │ │ │ ├── IRANSans │ │ │ │ ├── IRANSansWeb(FaNum).woff │ │ │ │ ├── IRANSansWeb.eot │ │ │ │ └── IRANSansWeb.ttf │ │ │ ├── Tanha │ │ │ │ ├── Tanha-FD.eot │ │ │ │ ├── Tanha-FD.ttf │ │ │ │ ├── Tanha-FD.woff │ │ │ │ └── Tanha-FD.woff2 │ │ │ ├── Yekan │ │ │ │ ├── Yekan.eot │ │ │ │ ├── Yekan.svg │ │ │ │ ├── Yekan.ttf │ │ │ │ ├── Yekan.woff │ │ │ │ ├── iranyekanwebmediumfanum.eot │ │ │ │ ├── iranyekanwebmediumfanum.svg │ │ │ │ ├── iranyekanwebmediumfanum.ttf │ │ │ │ └── iranyekanwebmediumfanum.woff │ │ │ └── vazir │ │ │ │ ├── Vazir-Bold-FD.woff │ │ │ │ ├── Vazir-Bold.eot │ │ │ │ ├── Vazir-Bold.ttf │ │ │ │ ├── Vazir-Bold.woff │ │ │ │ ├── Vazir-Bold.woff2 │ │ │ │ ├── Vazir-Light-FD-WOL.eot │ │ │ │ ├── Vazir-Light-FD-WOL.ttf │ │ │ │ ├── Vazir-Light-FD-WOL.woff │ │ │ │ ├── Vazir-Light-FD-WOL.woff2 │ │ │ │ ├── Vazir-Medium-WOL.eot │ │ │ │ ├── Vazir-Medium-WOL.ttf │ │ │ │ ├── Vazir-Medium-WOL.woff │ │ │ │ ├── Vazir-Medium-WOL.woff2 │ │ │ │ ├── Vazir-Meduim-FD.woff │ │ │ │ ├── Vazir-WOL.woff2 │ │ │ │ ├── Vazir.eot │ │ │ │ ├── Vazir.ttf │ │ │ │ ├── Vazir.woff │ │ │ │ └── Vazir.woff2 │ │ ├── images │ │ │ ├── avatar │ │ │ │ └── av1.png │ │ │ ├── cover │ │ │ │ └── cv1.jpg │ │ │ └── icon │ │ │ │ └── blog-logo.png │ │ ├── js │ │ │ └── functions.js │ │ └── vendor │ │ │ ├── apexcharts │ │ │ ├── css │ │ │ │ └── apexcharts.css │ │ │ └── js │ │ │ │ └── apexcharts.min.js │ │ │ ├── bootstrap-icons │ │ │ ├── bootstrap-icons.css │ │ │ └── fonts │ │ │ │ ├── bootstrap-iconsbf04.woff │ │ │ │ └── bootstrap-iconsbf04.woff2 │ │ │ ├── bootstrap │ │ │ └── dist │ │ │ │ └── js │ │ │ │ └── bootstrap.bundle.min.js │ │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-brands-400d41d.eot │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-regular-400d41d.eot │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ └── fa-solid-900d41d.eot │ │ │ ├── glightbox │ │ │ ├── css │ │ │ │ └── glightbox.css │ │ │ └── js │ │ │ │ └── glightbox.js │ │ │ ├── imagesLoaded │ │ │ └── imagesloaded.js │ │ │ ├── isotope │ │ │ └── isotope.pkgd.min.js │ │ │ ├── jarallax │ │ │ ├── jarallax-video.min.js │ │ │ └── jarallax.min.js │ │ │ ├── overlay-scrollbar │ │ │ ├── css │ │ │ │ └── OverlayScrollbars.min.css │ │ │ └── js │ │ │ │ └── OverlayScrollbars.min.js │ │ │ ├── plyr │ │ │ ├── plyr.css │ │ │ └── plyr.js │ │ │ ├── quill │ │ │ ├── css │ │ │ │ └── quill.snow.css │ │ │ └── js │ │ │ │ └── quill.min.js │ │ │ ├── sticky-js │ │ │ └── sticky.min.js │ │ │ ├── tiny-slider │ │ │ ├── tiny-slider-rtl.js │ │ │ └── tiny-slider.css │ │ │ └── vanilla-lazyload │ │ │ └── lazyload.min.js │ ├── templates │ │ ├── blog │ │ │ ├── detail.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── profile.html │ │ │ └── search.html │ │ ├── forms │ │ │ ├── comment.html │ │ │ ├── create-post.html │ │ │ ├── delete-post.html │ │ │ └── ticket.html │ │ ├── parent │ │ │ └── base.html │ │ ├── partials │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── latest_posts.html │ │ │ ├── navigation.html │ │ │ └── pagination.html │ │ └── registration │ │ │ ├── edit_account.html │ │ │ ├── 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 │ │ │ ├── register.html │ │ │ └── register_done.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── blog_tags.cpython-311.pyc │ │ └── blog_tags.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── images │ ├── account_images │ │ ├── 1653803307_W3xT2.jpeg │ │ ├── 1653803307_W3xT2_9pvt80c.jpeg │ │ ├── 1653803307_W3xT2_ydZJduL.jpeg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343.jpeg │ │ ├── nody-عکس-پروفایل-پسرانه-لاتی-1638993343_cmVUFOw.jpeg │ │ ├── py-django.webp │ │ └── python.jpeg │ └── post_images │ │ ├── artificial-intelligence-board-1200x717.webp │ │ ├── artificial-intelligence-board-1200x717_wpQJZKL.webp │ │ ├── cpp.png │ │ ├── cpp_UCWMGqV.png │ │ ├── django.png │ │ ├── django_PPkMGU5.png │ │ ├── flutter-app-development.jpeg │ │ ├── flutter-app-development_jy0pFD9.jpeg │ │ ├── golang.jpeg │ │ ├── golang_Qb8MRuV.jpeg │ │ ├── java.webp │ │ ├── neural_network-1.png │ │ ├── neural_network-1_7cG015N.png │ │ ├── py-django.webp │ │ ├── py-django_CNNyq6T.webp │ │ ├── py-django_jlGER8y.webp │ │ └── python.jpeg ├── manage.py └── sabzweb │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── settings.cpython-311.pyc │ ├── urls.cpython-311.pyc │ └── wsgi.cpython-311.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── video_tutorial ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── video_tutorial.iml ├── README.md ├── common ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── decorators.cpython-38.pyc └── decorators.py ├── db.sqlite3 ├── manage.py ├── requirements.txt ├── video ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-38.pyc │ ├── feeds.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── sitemaps.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── feeds.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── sitemaps.py ├── static │ ├── css │ │ ├── base.css │ │ ├── base1.css │ │ ├── index │ │ │ └── main-video.css │ │ ├── login.js │ │ ├── my-download │ │ │ └── my-download.css │ │ ├── my-upload │ │ │ └── my-upload.css │ │ ├── pagination │ │ │ └── pagination.css │ │ ├── profile │ │ │ └── profile.css │ │ ├── register-thecher │ │ │ └── register-thecher.css │ │ ├── uplod-video │ │ │ └── uplod-video.css │ │ ├── video-detail │ │ │ └── detail-video.css │ │ └── videolist │ │ │ └── products.css │ ├── fonts │ │ └── ttf │ │ │ ├── B Titr Bold_0.ttf │ │ │ ├── IRANSansWeb.ttf │ │ │ ├── IRANSansWeb_Bold.ttf │ │ │ └── Lalezar-Regular.ttf │ ├── images │ │ ├── contact_us │ │ │ ├── conversation-speech-bubbles-.png │ │ │ ├── customer-service.png │ │ │ ├── email.png │ │ │ ├── envelope.png │ │ │ ├── exclamation-mark (1).png │ │ │ ├── instagram (2).png │ │ │ ├── networking.png │ │ │ ├── no-doubt.png │ │ │ ├── phone-book.png │ │ │ ├── telegram.png │ │ │ ├── user-male-silhouette (1).png │ │ │ └── whatsapp.png │ │ ├── footer │ │ │ ├── email.png │ │ │ ├── enomad.png │ │ │ ├── facebook.png │ │ │ ├── instagram.png │ │ │ ├── ozv.png │ │ │ ├── phone.png │ │ │ ├── razi.png │ │ │ ├── res.png │ │ │ ├── telegram.png │ │ │ ├── twitter.png │ │ │ └── youtube.png │ │ ├── header │ │ │ ├── khunebazar_name.png │ │ │ └── logo.png │ │ ├── index │ │ │ ├── 002-calligraphy.png │ │ │ ├── 002-save-diskette.png │ │ │ ├── 003-floppy-disk.png │ │ │ ├── 004-button.png │ │ │ ├── 004-storage-diskette.png │ │ │ ├── 007-cake.png │ │ │ ├── 007-knitting-1.png │ │ │ ├── 008-brush.png │ │ │ ├── 011-teacher-1.png │ │ │ ├── 013-gamer.png │ │ │ ├── 015-desk.png │ │ │ ├── 1.jpg │ │ │ ├── 11111.jpg │ │ │ ├── 2.jpg │ │ │ ├── 2222.jpg │ │ │ ├── 3.jpg │ │ │ ├── 333333.jpg │ │ │ ├── 4444.jpg │ │ │ ├── 5555.jpg │ │ │ ├── ash.jpg │ │ │ ├── back.png │ │ │ ├── bamiye.jfif │ │ │ ├── dress.jfif │ │ │ ├── drs.jpg │ │ │ ├── math.jfif │ │ │ ├── nag1.jpg │ │ │ ├── next.png │ │ │ ├── photosh.jfif │ │ │ ├── s2.jpg │ │ │ └── save-button.png │ │ ├── my-download │ │ │ ├── 001-play-button-arrowhead.png │ │ │ ├── 004-video-player.png │ │ │ ├── add.png │ │ │ ├── add1.png │ │ │ ├── ash.jpg │ │ │ ├── exit.png │ │ │ └── pro1.png │ │ ├── my-upload │ │ │ ├── 001-play-button-arrowhead.png │ │ │ ├── 004-video-player.png │ │ │ ├── add.png │ │ │ ├── add1.png │ │ │ ├── ash.jpg │ │ │ ├── exit.png │ │ │ └── pro1.png │ │ ├── navigation │ │ │ ├── buy.png │ │ │ ├── down.png │ │ │ ├── menu.png │ │ │ └── user-icon.png │ │ ├── pagination │ │ │ ├── back.png │ │ │ └── next.png │ │ ├── profile │ │ │ ├── 001-play-button-arrowhead.png │ │ │ ├── 004-video-player.png │ │ │ ├── add.png │ │ │ ├── add1.png │ │ │ ├── ash.jpg │ │ │ ├── exit.png │ │ │ └── pro1.png │ │ ├── register-thecher │ │ │ ├── 001-play-button-arrowhead.png │ │ │ ├── 004-video-player.png │ │ │ ├── add.png │ │ │ ├── add1.png │ │ │ ├── ash.jpg │ │ │ ├── exit.png │ │ │ └── pro1.png │ │ ├── uplod-video │ │ │ ├── add1.png │ │ │ ├── order list6.png │ │ │ ├── orderlist2.png │ │ │ └── taraconesh2.png │ │ ├── video-detail │ │ │ ├── 001-direct-download.png │ │ │ ├── 001-heart.png │ │ │ ├── 001-play-button-arrowhead.png │ │ │ ├── 001-share.png │ │ │ ├── 002-smile.png │ │ │ ├── 003-speech-bubble.png │ │ │ ├── 004-conversation.png │ │ │ ├── 004-download-2.png │ │ │ ├── 005-like.png │ │ │ ├── 005-play.png │ │ │ ├── Annotatio.jpg │ │ │ ├── heart-full.png │ │ │ ├── nag1.jpg │ │ │ ├── order list6.png │ │ │ ├── order list7.png │ │ │ ├── orderlist2.png │ │ │ ├── product.png │ │ │ ├── save-button.png │ │ │ └── taraconesh2.png │ │ └── videolist │ │ │ ├── 002-eye.png │ │ │ ├── 004-download-2.png │ │ │ ├── ash.jpg │ │ │ ├── back.png │ │ │ ├── bamiye.jfif │ │ │ ├── dress.jfif │ │ │ ├── drs.jpg │ │ │ ├── math.jfif │ │ │ ├── nag1.jpg │ │ │ ├── next.png │ │ │ ├── photosh.jfif │ │ │ └── save-button.png │ └── js │ │ ├── index │ │ ├── jquery.js │ │ ├── main-video.js │ │ └── scripts.js │ │ ├── jquery.js │ │ ├── scripts.js │ │ ├── video-detail │ │ ├── detail-video.js │ │ └── jquery.js │ │ └── videolist │ │ ├── jquery.js │ │ └── jsproducts.js ├── templates │ └── video │ │ ├── Ajax │ │ └── video_list_ajax.html │ │ ├── forms │ │ └── login │ │ │ ├── ConfirmRegister.html │ │ │ ├── confirm_resetpassword.html │ │ │ ├── login.html │ │ │ ├── resetpassword_check.html │ │ │ └── resetpassword_send.html │ │ ├── panel │ │ ├── my-download.html │ │ ├── my-upload.html │ │ ├── profile.html │ │ ├── register_teacher.html │ │ └── upload_vedio.html │ │ ├── parent │ │ └── base.html │ │ ├── partials │ │ ├── footer.html │ │ ├── header.html │ │ ├── navigation.html │ │ ├── pagination.html │ │ └── vid_panel.html │ │ ├── template_tags │ │ └── latest_videos.html │ │ └── video_post │ │ ├── contact_us.html │ │ ├── index.html │ │ ├── video_detail.html │ │ └── video_list.html ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── video_tags.cpython-38.pyc │ └── video_tags.py ├── tests.py ├── urls.py └── views.py └── video_tutorial ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── settings.cpython-38.pyc ├── urls.cpython-38.pyc └── wsgi.cpython-38.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/django-projects.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/django-projects.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | IconResource=folderico-green.ico,0 3 | -------------------------------------------------------------------------------- /folderico-green.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/folderico-green.ico -------------------------------------------------------------------------------- /sabzshop/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/.gitignore -------------------------------------------------------------------------------- /sabzshop/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/dataSources.xml -------------------------------------------------------------------------------- /sabzshop/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /sabzshop/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /sabzshop/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/misc.xml -------------------------------------------------------------------------------- /sabzshop/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/modules.xml -------------------------------------------------------------------------------- /sabzshop/.idea/sabzshop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/sabzshop.iml -------------------------------------------------------------------------------- /sabzshop/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/vcs.xml -------------------------------------------------------------------------------- /sabzshop/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/.idea/workspace.xml -------------------------------------------------------------------------------- /sabzshop/__pycache__/manage.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/__pycache__/manage.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/account/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/admin.py -------------------------------------------------------------------------------- /sabzshop/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/apps.py -------------------------------------------------------------------------------- /sabzshop/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/forms.py -------------------------------------------------------------------------------- /sabzshop/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /sabzshop/account/migrations/0002_shopuser_date_joined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/migrations/0002_shopuser_date_joined.py -------------------------------------------------------------------------------- /sabzshop/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/models.py -------------------------------------------------------------------------------- /sabzshop/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/account/tests.py -------------------------------------------------------------------------------- /sabzshop/account/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /sabzshop/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/api/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/api/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/api/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/api/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/api/__pycache__/serializers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/__pycache__/serializers.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/admin.py -------------------------------------------------------------------------------- /sabzshop/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/apps.py -------------------------------------------------------------------------------- /sabzshop/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/models.py -------------------------------------------------------------------------------- /sabzshop/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/permissions.py -------------------------------------------------------------------------------- /sabzshop/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/serializers.py -------------------------------------------------------------------------------- /sabzshop/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/tests.py -------------------------------------------------------------------------------- /sabzshop/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/urls.py -------------------------------------------------------------------------------- /sabzshop/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/api/views.py -------------------------------------------------------------------------------- /sabzshop/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/cart/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/cart/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/cart/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/cart/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/admin.py -------------------------------------------------------------------------------- /sabzshop/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/apps.py -------------------------------------------------------------------------------- /sabzshop/cart/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/cart.py -------------------------------------------------------------------------------- /sabzshop/cart/common/KaveSms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/common/KaveSms.py -------------------------------------------------------------------------------- /sabzshop/cart/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/context_processors.py -------------------------------------------------------------------------------- /sabzshop/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/models.py -------------------------------------------------------------------------------- /sabzshop/cart/templates/cart/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/templates/cart/detail.html -------------------------------------------------------------------------------- /sabzshop/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/tests.py -------------------------------------------------------------------------------- /sabzshop/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/urls.py -------------------------------------------------------------------------------- /sabzshop/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/cart/views.py -------------------------------------------------------------------------------- /sabzshop/images/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product-1.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2023/12/03/Ostbager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2023/12/03/Ostbager.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2023/12/03/unnamed-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2023/12/03/unnamed-3-2.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2023/12/14/359177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2023/12/14/359177.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2023/12/14/447663.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2023/12/14/447663.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2024/05/11/cpp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2024/05/11/cpp_1.png -------------------------------------------------------------------------------- /sabzshop/images/product_images/2024/05/11/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2024/05/11/download.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2024/05/11/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2024/05/11/product-1.jpg -------------------------------------------------------------------------------- /sabzshop/images/product_images/2024/05/26/985685.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/images/product_images/2024/05/26/985685.jpg -------------------------------------------------------------------------------- /sabzshop/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/manage.py -------------------------------------------------------------------------------- /sabzshop/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/orders/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/orders/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/orders/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/orders/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/admin.py -------------------------------------------------------------------------------- /sabzshop/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/apps.py -------------------------------------------------------------------------------- /sabzshop/orders/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/forms.py -------------------------------------------------------------------------------- /sabzshop/orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /sabzshop/orders/migrations/0004_order_buyer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/migrations/0004_order_buyer.py -------------------------------------------------------------------------------- /sabzshop/orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/models.py -------------------------------------------------------------------------------- /sabzshop/orders/templates/order-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/order-detail.html -------------------------------------------------------------------------------- /sabzshop/orders/templates/order_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/order_create.html -------------------------------------------------------------------------------- /sabzshop/orders/templates/orders-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/orders-list.html -------------------------------------------------------------------------------- /sabzshop/orders/templates/payment-tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/payment-tracking.html -------------------------------------------------------------------------------- /sabzshop/orders/templates/verify_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/verify_code.html -------------------------------------------------------------------------------- /sabzshop/orders/templates/verify_phone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/templates/verify_phone.html -------------------------------------------------------------------------------- /sabzshop/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/tests.py -------------------------------------------------------------------------------- /sabzshop/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/urls.py -------------------------------------------------------------------------------- /sabzshop/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/orders/views.py -------------------------------------------------------------------------------- /sabzshop/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/requirements.txt -------------------------------------------------------------------------------- /sabzshop/sabzshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/sabzshop/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/sabzshop/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/sabzshop/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/sabzshop/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/sabzshop/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/asgi.py -------------------------------------------------------------------------------- /sabzshop/sabzshop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/settings.py -------------------------------------------------------------------------------- /sabzshop/sabzshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/urls.py -------------------------------------------------------------------------------- /sabzshop/sabzshop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/sabzshop/wsgi.py -------------------------------------------------------------------------------- /sabzshop/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/shop/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/shop/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/shop/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/shop/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/shop/__pycache__/signals.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/__pycache__/signals.cpython-311.pyc -------------------------------------------------------------------------------- /sabzshop/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/admin.py -------------------------------------------------------------------------------- /sabzshop/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/apps.py -------------------------------------------------------------------------------- /sabzshop/shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /sabzshop/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/models.py -------------------------------------------------------------------------------- /sabzshop/shop/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/signals.py -------------------------------------------------------------------------------- /sabzshop/shop/static/css/animate/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/animate/animate.min.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap-star-rating/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap-star-rating/theme.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap-star-rating/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap-star-rating/theme.js -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap/bootstrap-grid.min.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Add here all your CSS customizations */ 2 | -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fontawesome-free/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fontawesome-free/all.min.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/aviny-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-400.woff2 -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dana-700.woff2 -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-500.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/dubai-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/gandom-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/gandom-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/gandom-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/gandom-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/mikhak-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/myriad-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/myriad-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/myriad-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/myriad-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/myriad-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/myriad-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/myriad-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/myriad-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/noora-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-500.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/pinar-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/sahel-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vanda-500.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-300.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-500.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/vazir-700.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/fonts/farsi-fonts/yekan-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/owl-carousel/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/owl-carousel/ajax-loader.gif -------------------------------------------------------------------------------- /sabzshop/shop/static/css/owl-carousel/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/owl-carousel/owl.carousel.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/owl-carousel/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/owl-carousel/owl.theme.green.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/owl-carousel/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/owl-carousel/owl.video.play.png -------------------------------------------------------------------------------- /sabzshop/shop/static/css/skins/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/skins/default.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/theme-blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/theme-blog.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/theme-elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/theme-elements.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/theme-shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/theme-shop.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/theme.css -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /sabzshop/shop/static/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /sabzshop/shop/static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /sabzshop/shop/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/img/favicon.ico -------------------------------------------------------------------------------- /sabzshop/shop/static/img/icon-cart-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/img/icon-cart-big.svg -------------------------------------------------------------------------------- /sabzshop/shop/static/img/product-grey-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/img/product-grey-1.jpg -------------------------------------------------------------------------------- /sabzshop/shop/static/js/bootstrap-star-rating/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/bootstrap-star-rating/fa.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/bootstrap/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/bootstrap/bootstrap.bundle.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/bootstrap/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/bootstrap/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/common/common.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/common/common.init.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/common/common.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/common/common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/common/common.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/shop/static/js/isotope/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/isotope/jquery.isotope.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery.appear/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery.appear/jquery.appear.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery.cookie/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery.cookie/jquery.cookie.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery.gmap/jquery.gmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery.gmap/jquery.gmap.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery.gmap/jquery.gmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery.gmap/jquery.gmap.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/core.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.min.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.slim.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/magnific-popup/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/magnific-popup/magnific-popup.css -------------------------------------------------------------------------------- /sabzshop/shop/static/js/owl.carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/owl.carousel/owl.carousel.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/owl.carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/owl.carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper-utils.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper-utils.js.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper-utils.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper-utils.min.js.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper.js.flow -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper.js.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/popper/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/popper/popper.min.js.map -------------------------------------------------------------------------------- /sabzshop/shop/static/js/theme.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/theme.init.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/theme.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/vide/jquery.vide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/vide/jquery.vide.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/vide/jquery.vide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/vide/jquery.vide.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/views/view.contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/views/view.contact.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/views/view.home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/views/view.home.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/views/view.shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/views/view.shop.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/vivus/vivus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/vivus/vivus.js -------------------------------------------------------------------------------- /sabzshop/shop/static/js/vivus/vivus.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/js/vivus/vivus.min.js -------------------------------------------------------------------------------- /sabzshop/shop/static/modernizr/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/static/modernizr/modernizr.min.js -------------------------------------------------------------------------------- /sabzshop/shop/templates/parent/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/templates/parent/base.html -------------------------------------------------------------------------------- /sabzshop/shop/templates/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/shop/templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/templates/partials/header.html -------------------------------------------------------------------------------- /sabzshop/shop/templates/partials/navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzshop/shop/templates/shop/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/templates/shop/detail.html -------------------------------------------------------------------------------- /sabzshop/shop/templates/shop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/templates/shop/index.html -------------------------------------------------------------------------------- /sabzshop/shop/templates/shop/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/templates/shop/list.html -------------------------------------------------------------------------------- /sabzshop/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/tests.py -------------------------------------------------------------------------------- /sabzshop/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/urls.py -------------------------------------------------------------------------------- /sabzshop/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzshop/shop/views.py -------------------------------------------------------------------------------- /sabzsocial/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/.gitignore -------------------------------------------------------------------------------- /sabzsocial/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/dataSources.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/misc.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/modules.xml -------------------------------------------------------------------------------- /sabzsocial/.idea/sabzsocial.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/sabzsocial.iml -------------------------------------------------------------------------------- /sabzsocial/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/.idea/vcs.xml -------------------------------------------------------------------------------- /sabzsocial/__pycache__/manage.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/__pycache__/manage.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/chat/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/admin.py -------------------------------------------------------------------------------- /sabzsocial/chat/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/apps.py -------------------------------------------------------------------------------- /sabzsocial/chat/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/models.py -------------------------------------------------------------------------------- /sabzsocial/chat/templates/chat/access_denied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/templates/chat/access_denied.html -------------------------------------------------------------------------------- /sabzsocial/chat/templates/chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/templates/chat/chat.html -------------------------------------------------------------------------------- /sabzsocial/chat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/tests.py -------------------------------------------------------------------------------- /sabzsocial/chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/urls.py -------------------------------------------------------------------------------- /sabzsocial/chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/chat/views.py -------------------------------------------------------------------------------- /sabzsocial/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/db.sqlite3 -------------------------------------------------------------------------------- /sabzsocial/images/account_images/love-descriptive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/account_images/love-descriptive.jpg -------------------------------------------------------------------------------- /sabzsocial/images/account_images/py-django_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/account_images/py-django_2.webp -------------------------------------------------------------------------------- /sabzsocial/images/post_images/121352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/121352.jpg -------------------------------------------------------------------------------- /sabzsocial/images/post_images/121352_0UXysaU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/121352_0UXysaU.jpg -------------------------------------------------------------------------------- /sabzsocial/images/post_images/love-descriptive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/love-descriptive.jpg -------------------------------------------------------------------------------- /sabzsocial/images/post_images/man-walking-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/man-walking-dog.jpg -------------------------------------------------------------------------------- /sabzsocial/images/post_images/man-walking-dog_MynhQo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/man-walking-dog_MynhQo6.jpg -------------------------------------------------------------------------------- /sabzsocial/images/post_images/py-django.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/py-django.webp -------------------------------------------------------------------------------- /sabzsocial/images/post_images/py-snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/py-snake.png -------------------------------------------------------------------------------- /sabzsocial/images/post_images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/images/post_images/python.jpg -------------------------------------------------------------------------------- /sabzsocial/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/manage.py -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/asgi.py -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/settings.py -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/urls.py -------------------------------------------------------------------------------- /sabzsocial/sabzsocial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/sabzsocial/wsgi.py -------------------------------------------------------------------------------- /sabzsocial/social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/signals.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/signals.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /sabzsocial/social/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/admin.py -------------------------------------------------------------------------------- /sabzsocial/social/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/apps.py -------------------------------------------------------------------------------- /sabzsocial/social/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/authentication.py -------------------------------------------------------------------------------- /sabzsocial/social/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/forms.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0001_initial.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0002_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0002_post.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0003_post_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0003_post_tags.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0004_post_likes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0004_post_likes.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0005_post_saved_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0005_post_saved_by.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0006_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0006_contact.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0007_user_following.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0007_user_following.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0008_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0008_image.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0009_alter_post_saved_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0009_alter_post_saved_by.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0011_post_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0011_post_active.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0012_post_total_saves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0012_post_total_saves.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0013_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0013_comment.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0014_alter_comment_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0014_alter_comment_name.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/0015_alter_comment_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/migrations/0015_alter_comment_active.py -------------------------------------------------------------------------------- /sabzsocial/social/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/social/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/models.py -------------------------------------------------------------------------------- /sabzsocial/social/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/signals.py -------------------------------------------------------------------------------- /sabzsocial/social/static/css/animate.min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/animate.min.html -------------------------------------------------------------------------------- /sabzsocial/social/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/base.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/demos/interest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/demos/interest.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/demos/photo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/demos/photo.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/font.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/skins/skin_one.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/skins/skin_one.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/skins/skin_two.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/skins/skin_two.css -------------------------------------------------------------------------------- /sabzsocial/social/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/css/style.css -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/Anurati-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/Anurati-Regular.otf -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Bold.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Bold.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Bold.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Bold.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Bold.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Light.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Light.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Light.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Light.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Light.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Medium.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Medium.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Medium.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Medium.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_Medium.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/fonts/IRANSansWeb_UltraLight.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/images/profile/Avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/images/profile/Avatar.png -------------------------------------------------------------------------------- /sabzsocial/social/static/images/profile/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/images/profile/avatar2.png -------------------------------------------------------------------------------- /sabzsocial/social/static/images/profile/avatar2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/images/profile/avatar2.webp -------------------------------------------------------------------------------- /sabzsocial/social/static/img/arrowup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/arrowup.html -------------------------------------------------------------------------------- /sabzsocial/social/static/img/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/bg/1.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/bg/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/bg/10.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/bg/2.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/1.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/10.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/11.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/12.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/13.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/14.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/15.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/2.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/3.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/4.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/5.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/6.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/7.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/8.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/9.png -------------------------------------------------------------------------------- /sabzsocial/social/static/img/demo/more.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/demo/more.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/1.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/10.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/11.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/12.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/2.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/3.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/4.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/5.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/6.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/7.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/8.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/fluffs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/fluffs/9.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/logo.html -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/1.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/10.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/11.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/12.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/13.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/14.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/15.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/16.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/17.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/18.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/19.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/2.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/20.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/21.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/22.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/23.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/24.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/25.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/26.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/27.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/28.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/3.gif -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/30.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/31.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/32.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/36.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/4.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/5.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/6.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/7.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/8.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/posts/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/posts/9.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/1.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/10.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/11.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/12.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/13.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/14.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/15.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/16.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/17.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/18.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/2.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/3.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/4.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/5.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/6.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/7.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/8.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/img/users/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/img/users/9.jpg -------------------------------------------------------------------------------- /sabzsocial/social/static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/js/base.js -------------------------------------------------------------------------------- /sabzsocial/social/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /sabzsocial/social/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/js/jquery.min.js -------------------------------------------------------------------------------- /sabzsocial/social/static/js/modernizr-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/js/modernizr-custom.html -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /sabzsocial/social/static/webfonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/static/webfonts/fa-solid-900d41d.eot -------------------------------------------------------------------------------- /sabzsocial/social/templates/forms/create-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/forms/create-post.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/forms/ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/forms/ticket.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/parent/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/parent/base.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzsocial/social/templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/partials/header.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/partials/my-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/partials/my-modal.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/partials/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/partials/navigation.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/registration/edit_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/registration/edit_user.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/registration/logged_out.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/registration/login.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/registration/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/registration/register.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/social/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/social/detail.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/social/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/social/list.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/social/list_ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/social/list_ajax.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/social/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/social/profile.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/user/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/user/user_detail.html -------------------------------------------------------------------------------- /sabzsocial/social/templates/user/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/templates/user/user_list.html -------------------------------------------------------------------------------- /sabzsocial/social/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/tests.py -------------------------------------------------------------------------------- /sabzsocial/social/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/urls.py -------------------------------------------------------------------------------- /sabzsocial/social/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzsocial/social/views.py -------------------------------------------------------------------------------- /sabzweb/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/.gitignore -------------------------------------------------------------------------------- /sabzweb/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/dataSources.xml -------------------------------------------------------------------------------- /sabzweb/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /sabzweb/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /sabzweb/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/misc.xml -------------------------------------------------------------------------------- /sabzweb/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/modules.xml -------------------------------------------------------------------------------- /sabzweb/.idea/sabzweb.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/sabzweb.iml -------------------------------------------------------------------------------- /sabzweb/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/.idea/vcs.xml -------------------------------------------------------------------------------- /sabzweb/__pycache__/manage.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/__pycache__/manage.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/admin.py -------------------------------------------------------------------------------- /sabzweb/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/apps.py -------------------------------------------------------------------------------- /sabzweb/blog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/forms.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0002_alter_post_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0002_alter_post_options.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0004_ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0004_ticket.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0011_alter_image_image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0011_alter_image_image_file.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0012_alter_image_image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0012_alter_image_image_file.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0013_alter_image_image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0013_alter_image_image_file.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0014_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0014_account.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0015_delete_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0015_delete_account.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0016_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0016_account.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/0017_post_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/migrations/0017_post_category.py -------------------------------------------------------------------------------- /sabzweb/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzweb/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/models.py -------------------------------------------------------------------------------- /sabzweb/blog/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/css/base.css -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/IRANSans/IRANSansWeb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/IRANSans/IRANSansWeb.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/IRANSans/IRANSansWeb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/IRANSans/IRANSansWeb.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Tanha/Tanha-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Tanha/Tanha-FD.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Tanha/Tanha-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Tanha/Tanha-FD.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Tanha/Tanha-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Tanha/Tanha-FD.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Tanha/Tanha-FD.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Tanha/Tanha-FD.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Yekan/Yekan.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Yekan/Yekan.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Yekan/Yekan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Yekan/Yekan.svg -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Yekan/Yekan.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Yekan/Yekan.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/Yekan/Yekan.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/Yekan/Yekan.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Bold-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Bold-FD.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Bold.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Bold.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Bold.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Bold.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Light-FD-WOL.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Medium-WOL.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-Meduim-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-Meduim-FD.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir-WOL.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir-WOL.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir.eot -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir.ttf -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir.woff -------------------------------------------------------------------------------- /sabzweb/blog/static/fonts/vazir/Vazir.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/fonts/vazir/Vazir.woff2 -------------------------------------------------------------------------------- /sabzweb/blog/static/images/avatar/av1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/images/avatar/av1.png -------------------------------------------------------------------------------- /sabzweb/blog/static/images/cover/cv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/images/cover/cv1.jpg -------------------------------------------------------------------------------- /sabzweb/blog/static/images/icon/blog-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/images/icon/blog-logo.png -------------------------------------------------------------------------------- /sabzweb/blog/static/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/js/functions.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/apexcharts/css/apexcharts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/apexcharts/css/apexcharts.css -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/font-awesome/css/all.min.css -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/glightbox/css/glightbox.css -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/glightbox/js/glightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/glightbox/js/glightbox.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/imagesLoaded/imagesloaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/imagesLoaded/imagesloaded.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/isotope/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/isotope/isotope.pkgd.min.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/jarallax/jarallax-video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/jarallax/jarallax-video.min.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/jarallax/jarallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/jarallax/jarallax.min.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/plyr/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/plyr/plyr.css -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/plyr/plyr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/plyr/plyr.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/quill/css/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/quill/css/quill.snow.css -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/quill/js/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/quill/js/quill.min.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/sticky-js/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/sticky-js/sticky.min.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/tiny-slider/tiny-slider-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/tiny-slider/tiny-slider-rtl.js -------------------------------------------------------------------------------- /sabzweb/blog/static/vendor/tiny-slider/tiny-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/static/vendor/tiny-slider/tiny-slider.css -------------------------------------------------------------------------------- /sabzweb/blog/templates/blog/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/blog/detail.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/blog/index.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/blog/list.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/blog/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/blog/profile.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/blog/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/blog/search.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/forms/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/forms/comment.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/forms/create-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/forms/create-post.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/forms/delete-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/forms/delete-post.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/forms/ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/forms/ticket.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/parent/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/parent/base.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/partials/footer.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/partials/header.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/partials/latest_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/partials/latest_posts.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/partials/navigation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzweb/blog/templates/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/partials/pagination.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/registration/edit_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/registration/edit_account.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/registration/logged_out.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/registration/login.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/registration/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/registration/register.html -------------------------------------------------------------------------------- /sabzweb/blog/templates/registration/register_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templates/registration/register_done.html -------------------------------------------------------------------------------- /sabzweb/blog/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzweb/blog/templatetags/blog_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/templatetags/blog_tags.py -------------------------------------------------------------------------------- /sabzweb/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/tests.py -------------------------------------------------------------------------------- /sabzweb/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/urls.py -------------------------------------------------------------------------------- /sabzweb/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/blog/views.py -------------------------------------------------------------------------------- /sabzweb/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/db.sqlite3 -------------------------------------------------------------------------------- /sabzweb/images/account_images/1653803307_W3xT2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/account_images/1653803307_W3xT2.jpeg -------------------------------------------------------------------------------- /sabzweb/images/account_images/py-django.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/account_images/py-django.webp -------------------------------------------------------------------------------- /sabzweb/images/account_images/python.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/account_images/python.jpeg -------------------------------------------------------------------------------- /sabzweb/images/post_images/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/cpp.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/cpp_UCWMGqV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/cpp_UCWMGqV.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/django.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/django_PPkMGU5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/django_PPkMGU5.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/flutter-app-development.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/flutter-app-development.jpeg -------------------------------------------------------------------------------- /sabzweb/images/post_images/golang.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/golang.jpeg -------------------------------------------------------------------------------- /sabzweb/images/post_images/golang_Qb8MRuV.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/golang_Qb8MRuV.jpeg -------------------------------------------------------------------------------- /sabzweb/images/post_images/java.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/java.webp -------------------------------------------------------------------------------- /sabzweb/images/post_images/neural_network-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/neural_network-1.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/neural_network-1_7cG015N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/neural_network-1_7cG015N.png -------------------------------------------------------------------------------- /sabzweb/images/post_images/py-django.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/py-django.webp -------------------------------------------------------------------------------- /sabzweb/images/post_images/py-django_CNNyq6T.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/py-django_CNNyq6T.webp -------------------------------------------------------------------------------- /sabzweb/images/post_images/py-django_jlGER8y.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/py-django_jlGER8y.webp -------------------------------------------------------------------------------- /sabzweb/images/post_images/python.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/images/post_images/python.jpeg -------------------------------------------------------------------------------- /sabzweb/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/manage.py -------------------------------------------------------------------------------- /sabzweb/sabzweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sabzweb/sabzweb/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/sabzweb/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/sabzweb/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/sabzweb/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /sabzweb/sabzweb/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/asgi.py -------------------------------------------------------------------------------- /sabzweb/sabzweb/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/settings.py -------------------------------------------------------------------------------- /sabzweb/sabzweb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/urls.py -------------------------------------------------------------------------------- /sabzweb/sabzweb/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/sabzweb/sabzweb/wsgi.py -------------------------------------------------------------------------------- /video_tutorial/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/.idea/.gitignore -------------------------------------------------------------------------------- /video_tutorial/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/.idea/misc.xml -------------------------------------------------------------------------------- /video_tutorial/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/.idea/modules.xml -------------------------------------------------------------------------------- /video_tutorial/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/.idea/vcs.xml -------------------------------------------------------------------------------- /video_tutorial/.idea/video_tutorial.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/.idea/video_tutorial.iml -------------------------------------------------------------------------------- /video_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/README.md -------------------------------------------------------------------------------- /video_tutorial/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/common/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/common/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/common/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/common/decorators.py -------------------------------------------------------------------------------- /video_tutorial/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/db.sqlite3 -------------------------------------------------------------------------------- /video_tutorial/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/manage.py -------------------------------------------------------------------------------- /video_tutorial/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/requirements.txt -------------------------------------------------------------------------------- /video_tutorial/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/feeds.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/feeds.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /video_tutorial/video/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/admin.py -------------------------------------------------------------------------------- /video_tutorial/video/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/apps.py -------------------------------------------------------------------------------- /video_tutorial/video/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/feeds.py -------------------------------------------------------------------------------- /video_tutorial/video/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/forms.py -------------------------------------------------------------------------------- /video_tutorial/video/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/migrations/0001_initial.py -------------------------------------------------------------------------------- /video_tutorial/video/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/video/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/models.py -------------------------------------------------------------------------------- /video_tutorial/video/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/sitemaps.py -------------------------------------------------------------------------------- /video_tutorial/video/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/base.css -------------------------------------------------------------------------------- /video_tutorial/video/static/css/base1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/base1.css -------------------------------------------------------------------------------- /video_tutorial/video/static/css/index/main-video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/index/main-video.css -------------------------------------------------------------------------------- /video_tutorial/video/static/css/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/login.js -------------------------------------------------------------------------------- /video_tutorial/video/static/css/profile/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/profile/profile.css -------------------------------------------------------------------------------- /video_tutorial/video/static/css/videolist/products.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/css/videolist/products.css -------------------------------------------------------------------------------- /video_tutorial/video/static/fonts/ttf/IRANSansWeb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/fonts/ttf/IRANSansWeb.ttf -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/email.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/enomad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/enomad.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/facebook.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/ozv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/ozv.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/phone.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/razi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/razi.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/res.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/telegram.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/twitter.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/footer/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/footer/youtube.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/header/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/header/logo.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/007-cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/007-cake.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/008-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/008-brush.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/013-gamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/013-gamer.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/015-desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/015-desk.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/1.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/11111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/11111.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/2.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/2222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/2222.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/3.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/333333.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/333333.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/4444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/4444.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/5555.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/5555.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/ash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/ash.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/back.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/bamiye.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/bamiye.jfif -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/dress.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/dress.jfif -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/drs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/drs.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/math.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/math.jfif -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/nag1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/nag1.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/next.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/photosh.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/photosh.jfif -------------------------------------------------------------------------------- /video_tutorial/video/static/images/index/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/index/s2.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-download/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-download/add.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-download/ash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-download/ash.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-upload/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-upload/add.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-upload/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-upload/add1.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-upload/ash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-upload/ash.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-upload/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-upload/exit.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/my-upload/pro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/my-upload/pro1.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/navigation/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/navigation/buy.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/navigation/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/navigation/down.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/navigation/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/navigation/menu.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/pagination/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/pagination/back.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/pagination/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/pagination/next.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/profile/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/profile/add.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/profile/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/profile/add1.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/profile/ash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/profile/ash.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/profile/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/profile/exit.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/profile/pro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/profile/pro1.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/ash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/ash.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/back.png -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/drs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/drs.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/math.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/math.jfif -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/nag1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/nag1.jpg -------------------------------------------------------------------------------- /video_tutorial/video/static/images/videolist/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/images/videolist/next.png -------------------------------------------------------------------------------- /video_tutorial/video/static/js/index/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/index/jquery.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/index/main-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/index/main-video.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/index/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/index/scripts.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/jquery.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/scripts.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/video-detail/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/video-detail/jquery.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/videolist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/static/js/videolist/jquery.js -------------------------------------------------------------------------------- /video_tutorial/video/static/js/videolist/jsproducts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/video/templates/video/parent/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/templates/video/parent/base.html -------------------------------------------------------------------------------- /video_tutorial/video/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/video/templatetags/video_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/templatetags/video_tags.py -------------------------------------------------------------------------------- /video_tutorial/video/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/tests.py -------------------------------------------------------------------------------- /video_tutorial/video/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/urls.py -------------------------------------------------------------------------------- /video_tutorial/video/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video/views.py -------------------------------------------------------------------------------- /video_tutorial/video_tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_tutorial/video_tutorial/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video_tutorial/asgi.py -------------------------------------------------------------------------------- /video_tutorial/video_tutorial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video_tutorial/settings.py -------------------------------------------------------------------------------- /video_tutorial/video_tutorial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video_tutorial/urls.py -------------------------------------------------------------------------------- /video_tutorial/video_tutorial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rezadolati01/django-projects/HEAD/video_tutorial/video_tutorial/wsgi.py --------------------------------------------------------------------------------