-
91 |
- 92 | 94 | خـانه 95 | 96 | 97 |
- 98 | محصولات 100 | 101 |
- مقالات 104 |
- درباره مـا 107 |
- تماس با مـا 110 |
├── polls ├── __init__.py ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── poll_extras.cpython-39.pyc │ └── poll_extras.py ├── models.py ├── tests.py ├── admin.py ├── views.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── __init__.cpython-39.pyc └── apps.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── convertors.cpython-39.pyc │ ├── email_service.cpython-39.pyc │ └── http_service.cpython-39.pyc ├── convertors.py ├── http_service.py └── email_service.py ├── home_module ├── __init__.py ├── models.py ├── tests.py ├── admin.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── templates │ └── home_module │ │ ├── contact_page.html │ │ └── about_page.html ├── apps.py ├── urls.py └── views.py ├── site_module ├── __init__.py ├── tests.py ├── views.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py ├── admin.py └── models.py ├── account_module ├── __init__.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── admin.py ├── apps.py ├── urls.py ├── models.py ├── templates │ └── account_module │ │ ├── forgot_password.html │ │ ├── reset_password.html │ │ ├── login.html │ │ └── register.html ├── forms.py └── views.py ├── article_module ├── __init__.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py ├── urls.py ├── admin.py ├── templates │ └── article_module │ │ ├── components │ │ └── article_categories_component.html │ │ ├── includes │ │ └── article_comments_partial.html │ │ ├── articles_page.html │ │ └── article_detail_page.html ├── models.py └── views.py ├── contact_module ├── __init__.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── admin.py ├── apps.py ├── urls.py ├── templates │ └── contact_module │ │ ├── profiles_list_page.html │ │ ├── create_profile_page.html │ │ └── contact_us_page.html ├── models.py ├── forms.py └── views.py ├── eshop_project ├── __init__.py ├── __pycache__ │ ├── urls.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc ├── asgi.py ├── wsgi.py ├── urls.py └── settings.py ├── order_module ├── __init__.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── urls.py ├── admin.py ├── apps.py ├── models.py └── views.py ├── product_module ├── __init__.py ├── tests.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py ├── templates │ ├── product_module │ │ ├── components │ │ │ ├── product_brands_component.html │ │ │ └── product_categories_component.html │ │ ├── product_list.html │ │ └── product_detail.html │ └── includes │ │ └── product_item_partial.html ├── urls.py ├── admin.py ├── models.py └── views.py ├── user_panel_module ├── __init__.py ├── models.py ├── tests.py ├── admin.py ├── __pycache__ │ ├── apps.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ ├── views.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py ├── templates │ └── user_panel_module │ │ ├── user_basket.html │ │ ├── components │ │ └── user_panel_menu_component.html │ │ ├── user_panel_dashboard_page.html │ │ ├── edit_profile_page.html │ │ ├── change_password_page.html │ │ └── user_basket_content.html ├── urls.py ├── forms.py └── views.py ├── db.sqlite3 ├── static ├── fonts │ ├── BYekan.eot │ ├── BYekan.ttf │ ├── BYekan.woff │ ├── FontAwesome.otf │ ├── fontawesome-webfont.woff │ └── glyphicons-halflings-regular.woff ├── images │ ├── 404 │ │ └── 404.png │ ├── cart │ │ ├── one.png │ │ ├── two.png │ │ └── three.png │ ├── home │ │ ├── Map.jpg │ │ ├── map.png │ │ ├── new.png │ │ ├── Slider.psd │ │ ├── Tabs.png │ │ ├── Tabs.psd │ │ ├── girl2.jpg │ │ ├── logo.png │ │ ├── sale.png │ │ ├── Gallery.jpg │ │ ├── Gallery.psd │ │ ├── partner1.png │ │ ├── partner2.png │ │ ├── partner3.png │ │ ├── partner4.png │ │ ├── pricing.png │ │ ├── product.jpg │ │ ├── product1.psd │ │ ├── shipping.jpg │ │ ├── About-Logo.jpg │ │ ├── Slider-01.jpg │ │ ├── bg_border.png │ │ └── searchicon.png │ ├── blog │ │ ├── Customer.jpg │ │ ├── blog-one.jpg │ │ ├── blog-one.psd │ │ └── socials.png │ ├── shop │ │ ├── product.jpg │ │ └── advertisement.jpg │ └── product-details │ │ ├── 1.jpg │ │ ├── Bale.png │ │ ├── Main.psd │ │ ├── new.jpg │ │ ├── new.png │ │ ├── share.png │ │ ├── Similar.psd │ │ ├── Socials.psd │ │ ├── Soroush.png │ │ ├── rating.png │ │ ├── Instagram.png │ │ ├── Telegram.png │ │ ├── similar1.jpg │ │ ├── similar2.jpg │ │ └── similar3.jpg ├── css │ ├── custom.css │ ├── price-range.css │ └── responsive.css ├── js │ ├── contact.js │ ├── jquery.scrollUp.min.js │ ├── html5shiv.js │ ├── main.js │ └── custom.js └── lib │ └── image-lightbox │ ├── css │ └── lightbox.min.css │ └── js │ └── lightbox.min.js ├── media ├── images │ └── products │ │ ├── product.jpg │ │ ├── redmi_note11.jfif │ │ ├── redmi_watch.jfif │ │ └── surface_12.4.jfif └── cache │ ├── 94 │ └── 1b │ │ └── 941b13009bd5ae011fbe01ddeb3e3aee.jpg │ ├── b2 │ └── 97 │ │ └── b297c80c91dddc1b6c35e13cf2e0eaa5.jpg │ ├── e0 │ └── 20 │ │ └── e02002d56d4f44121a199ac771292f12.jpg │ └── ee │ └── 76 │ └── ee76a2cdb70f68737ded7741c45cb67a.jpg ├── requirements.txt ├── templates ├── base.html ├── emails │ ├── activate_account.html │ └── forgot_password.html └── shared │ ├── footer_references.html │ ├── _layout.html │ ├── header_references.html │ ├── site_footer_component.html │ └── site_header_component.html ├── README.md └── manage.py /polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /account_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /article_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contact_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eshop_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /order_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_panel_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /polls/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /home_module/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /home_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /order_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /site_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /account_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /article_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /contact_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /product_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /site_module/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /user_panel_module/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /user_panel_module/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /home_module/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | -------------------------------------------------------------------------------- /user_panel_module/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /static/fonts/BYekan.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/BYekan.eot -------------------------------------------------------------------------------- /static/fonts/BYekan.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/BYekan.ttf -------------------------------------------------------------------------------- /static/fonts/BYekan.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/BYekan.woff -------------------------------------------------------------------------------- /static/images/404/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/404/404.png -------------------------------------------------------------------------------- /static/images/cart/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/cart/one.png -------------------------------------------------------------------------------- /static/images/cart/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/cart/two.png -------------------------------------------------------------------------------- /static/images/home/Map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Map.jpg -------------------------------------------------------------------------------- /static/images/home/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/map.png -------------------------------------------------------------------------------- /static/images/home/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/new.png -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/images/cart/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/cart/three.png -------------------------------------------------------------------------------- /static/images/home/Slider.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Slider.psd -------------------------------------------------------------------------------- /static/images/home/Tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Tabs.png -------------------------------------------------------------------------------- /static/images/home/Tabs.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Tabs.psd -------------------------------------------------------------------------------- /static/images/home/girl2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/girl2.jpg -------------------------------------------------------------------------------- /static/images/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/logo.png -------------------------------------------------------------------------------- /static/images/home/sale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/sale.png -------------------------------------------------------------------------------- /static/images/blog/Customer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/blog/Customer.jpg -------------------------------------------------------------------------------- /static/images/blog/blog-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/blog/blog-one.jpg -------------------------------------------------------------------------------- /static/images/blog/blog-one.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/blog/blog-one.psd -------------------------------------------------------------------------------- /static/images/blog/socials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/blog/socials.png -------------------------------------------------------------------------------- /static/images/home/Gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Gallery.jpg -------------------------------------------------------------------------------- /static/images/home/Gallery.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Gallery.psd -------------------------------------------------------------------------------- /static/images/home/partner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/partner1.png -------------------------------------------------------------------------------- /static/images/home/partner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/partner2.png -------------------------------------------------------------------------------- /static/images/home/partner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/partner3.png -------------------------------------------------------------------------------- /static/images/home/partner4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/partner4.png -------------------------------------------------------------------------------- /static/images/home/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/pricing.png -------------------------------------------------------------------------------- /static/images/home/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/product.jpg -------------------------------------------------------------------------------- /static/images/home/product1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/product1.psd -------------------------------------------------------------------------------- /static/images/home/shipping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/shipping.jpg -------------------------------------------------------------------------------- /static/images/shop/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/shop/product.jpg -------------------------------------------------------------------------------- /media/images/products/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/images/products/product.jpg -------------------------------------------------------------------------------- /static/images/home/About-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/About-Logo.jpg -------------------------------------------------------------------------------- /static/images/home/Slider-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/Slider-01.jpg -------------------------------------------------------------------------------- /static/images/home/bg_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/bg_border.png -------------------------------------------------------------------------------- /static/images/home/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/home/searchicon.png -------------------------------------------------------------------------------- /static/images/product-details/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/1.jpg -------------------------------------------------------------------------------- /static/images/shop/advertisement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/shop/advertisement.jpg -------------------------------------------------------------------------------- /media/images/products/redmi_note11.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/images/products/redmi_note11.jfif -------------------------------------------------------------------------------- /media/images/products/redmi_watch.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/images/products/redmi_watch.jfif -------------------------------------------------------------------------------- /media/images/products/surface_12.4.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/images/products/surface_12.4.jfif -------------------------------------------------------------------------------- /polls/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /polls/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /polls/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/images/product-details/Bale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Bale.png -------------------------------------------------------------------------------- /static/images/product-details/Main.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Main.psd -------------------------------------------------------------------------------- /static/images/product-details/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/new.jpg -------------------------------------------------------------------------------- /static/images/product-details/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/new.png -------------------------------------------------------------------------------- /static/images/product-details/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/share.png -------------------------------------------------------------------------------- /polls/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /static/images/product-details/Similar.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Similar.psd -------------------------------------------------------------------------------- /static/images/product-details/Socials.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Socials.psd -------------------------------------------------------------------------------- /static/images/product-details/Soroush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Soroush.png -------------------------------------------------------------------------------- /static/images/product-details/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/rating.png -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /site_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/site_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /site_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/site_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /static/images/product-details/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Instagram.png -------------------------------------------------------------------------------- /static/images/product-details/Telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/Telegram.png -------------------------------------------------------------------------------- /static/images/product-details/similar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/similar1.jpg -------------------------------------------------------------------------------- /static/images/product-details/similar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/similar2.jpg -------------------------------------------------------------------------------- /static/images/product-details/similar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/images/product-details/similar3.jpg -------------------------------------------------------------------------------- /utils/__pycache__/convertors.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/utils/__pycache__/convertors.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /eshop_project/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/eshop_project/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /eshop_project/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/eshop_project/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /site_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/site_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /utils/__pycache__/email_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/utils/__pycache__/email_service.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/http_service.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/utils/__pycache__/http_service.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /eshop_project/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/eshop_project/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /eshop_project/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/eshop_project/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /home_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/home_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /order_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/order_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /site_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/site_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/account_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /article_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/article_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/contact_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /product_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/product_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /account_module/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | # Register your models here. 5 | 6 | admin.site.register(models.User) 7 | -------------------------------------------------------------------------------- /media/cache/94/1b/941b13009bd5ae011fbe01ddeb3e3aee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/cache/94/1b/941b13009bd5ae011fbe01ddeb3e3aee.jpg -------------------------------------------------------------------------------- /media/cache/b2/97/b297c80c91dddc1b6c35e13cf2e0eaa5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/cache/b2/97/b297c80c91dddc1b6c35e13cf2e0eaa5.jpg -------------------------------------------------------------------------------- /media/cache/e0/20/e02002d56d4f44121a199ac771292f12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/cache/e0/20/e02002d56d4f44121a199ac771292f12.jpg -------------------------------------------------------------------------------- /media/cache/ee/76/ee76a2cdb70f68737ded7741c45cb67a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/media/cache/ee/76/ee76a2cdb70f68737ded7741c45cb67a.jpg -------------------------------------------------------------------------------- /polls/templatetags/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/templatetags/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /user_panel_module/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/user_panel_module/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /contact_module/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | # Register your models here. 5 | 6 | admin.site.register(models.ContactUs) 7 | -------------------------------------------------------------------------------- /polls/templatetags/__pycache__/poll_extras.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiparsa76/Django-Shop/HEAD/polls/templatetags/__pycache__/poll_extras.cpython-39.pyc -------------------------------------------------------------------------------- /polls/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PollsConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'polls' 7 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref 2 | Django 3 | django-jalali-date 4 | django-render-partial 5 | jdatetime 6 | Pillow 7 | pytz 8 | sorl-thumbnail 9 | sqlparse 10 | typing-extensions 11 | -------------------------------------------------------------------------------- /home_module/templates/home_module/contact_page.html: -------------------------------------------------------------------------------- 1 | {% extends 'shared/_layout.html' %} 2 | 3 | {% block content %} 4 |
5 | صفحه ی تماس با ما 6 |
7 | {% endblock %} -------------------------------------------------------------------------------- /home_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class HomeModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'home_module' 7 | -------------------------------------------------------------------------------- /order_module/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('add-to-order', views.add_product_to_order, name='add_product_to_order') 6 | ] 7 | -------------------------------------------------------------------------------- /order_module/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from . import models 3 | 4 | # Register your models here. 5 | 6 | admin.site.register(models.Order) 7 | admin.site.register(models.OrderDetail) 8 | -------------------------------------------------------------------------------- /user_panel_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserPanelModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'user_panel_module' 7 | -------------------------------------------------------------------------------- /utils/convertors.py: -------------------------------------------------------------------------------- 1 | def group_list(custom_list, size=4): 2 | grouped_list = [] 3 | for i in range(0, len(custom_list), size): 4 | grouped_list.append(custom_list[i:i + size]) 5 | return grouped_list 6 | -------------------------------------------------------------------------------- /article_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ArticleModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'article_module' 7 | verbose_name = 'ماژول مقالات' 8 | -------------------------------------------------------------------------------- /home_module/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.HomeView.as_view(), name='home_page'), 6 | path('about-us', views.AboutView.as_view(), name='about_page'), 7 | ] 8 | -------------------------------------------------------------------------------- /order_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OrderModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'order_module' 7 | verbose_name = 'ماژول سبد خرید' 8 | -------------------------------------------------------------------------------- /site_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class SiteModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'site_module' 7 | verbose_name = 'ماژول تنظیمات سایت' 8 | -------------------------------------------------------------------------------- /account_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'account_module' 7 | verbose_name = 'ماژول کاربران' 8 | -------------------------------------------------------------------------------- /contact_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ContactModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'contact_module' 7 | verbose_name = 'ماژول تماس با ما' 8 | -------------------------------------------------------------------------------- /product_module/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ProductModuleConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'product_module' 7 | verbose_name = 'ماژول محصولات' 8 | -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- 1 | .errorlist { 2 | padding-right: 0 !important; 3 | } 4 | 5 | .errorlist li { 6 | color: red; 7 | } 8 | 9 | ul { 10 | padding-right: 0; 11 | } 12 | 13 | .cursor-pointer { 14 | cursor: pointer; 15 | } -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |کاربر گرامی ، جهت فعالسازی حساب کاربری خود روی لینک زیر کلیک کنید
5 |6 | فعالسازی 7 | حساب کاربری 8 |
9 |کاربر گرامی ، جهت بازیابی کلمه عبور حساب کاربری خود روی لینک زیر کلیک کنید
5 |6 | فعالسازی 7 | بازیابی کلمه عبور 8 |
9 |this is user dashboard
16 |
14 | {% endif %}
15 | {{ product.title }}
17 | افزودن به سبـد خریـد 19 |گـروه تکنوگـرافی 1614
30 |ایـران - آذربایجـان غربـی - خـوی
31 |مجتـمع تجـاری تفریحـی شمس - طبـقه 2 - پلاک 54
32 |تلفن تماس : 80 21 24 36 044
33 |فکس : 80 21 24 36 044
34 |ایمیـل : info@1614GP.ir
35 | 36 |
9 |
10 | 19 | {{ comment.text }} 20 |
21 | پاسـخ 23 |
30 |
31 | 41 | {{ sub_comment.text }} 42 |
43 |24 | {{ site_setting.about_us_text }} 25 |
26 |34 | {{ site_setting.address }}| 35 | تلفن تماس : {{ site_setting.phone }} | 36 | {% if site_setting.fax %} 37 | فکس : {{ site_setting.fax }} | 38 | {% endif %} 39 | {% if site_setting.email %} 40 | ایمیـل : {{ site_setting.email }} 41 | {% endif %} 42 |
43 | 44 |46 | {{ article.short_description }} 47 |
48 | ادامـه 49 | مطلب 50 || کـالا | 17 |18 | | قیمت | 19 |تعـداد | 20 |مجمـوع | 21 |22 | |
|
28 | |
30 |
31 | {{ detail.product.title }}32 |شناسـه : {{ detail.product.id }} 33 | |
34 |
35 | {{ detail.product.price|three_digits_currency }} 36 | |
37 | 38 | 47 | | 48 |
49 | {% multiply detail.count detail.product.price %} 50 | {#{{ detail.get_total_price|three_digits_currency }} #} 51 | |
52 | 53 | 55 | | 56 |
سبد خرید شما خالی می باشد
85 |هیچ محصولی یافت نشد
41 |{{ site_setting.site_name }}
83 |آدرس: {{ site_setting.address }}
84 |تلفن تماس : {{ site_setting.phone }}
85 | {% if site_setting.fax %} 86 |فکس : {{ site_setting.fax }}
87 | {% endif %} 88 | {% if site_setting.email %} 89 |ایمیـل : {{ site_setting.email }}
90 | {% endif %} 91 | 92 |43 | {{ article.short_description }} 44 |
45 |46 | {{ article.text }} 47 |
48 |
61 | {% endif %}
62 |
63 | 66 | {{ article.author.about_user }} 67 |
68 |
79 |
80 | 89 | {{ comment.text }} 90 |
91 | پاسـخ 93 |
100 |
101 | 111 | {{ sub_comment.text }} 112 |
113 |
30 | {% endif %}
31 |
71 | شناسـه : {{ product.id }}
74 |موجـودی : در انبـار موجود می باشد
92 | 93 | {% if product.brand %} 94 |برنـد : {{ product.brand.title }}
95 | {% endif %} 96 |لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده ازلورملورم 124 | ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان 125 | گرافیک است. چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و 126 | برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای 127 | کاربردی می باشد. کتابهای زیادی در شصت و سه درصد گذشته، حال و آینده شناخت فراوان 128 | جامعه و متخصصان را می طلبد تا با نرم افزارها شناخت بیشتری را برای طراحان رایانه 129 | ای علی الخصوص طراحان خلاقی و فرهنگ پیشرو در زبان فارسی ایجاد کرد.
130 |نظـر خود را بنویسیـد
131 | 132 | 143 |