├── .idea ├── .gitignore ├── ARTGALLERY.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── README.md ├── artgallery ├── adminapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_adminpage.py │ │ ├── 0003_delete_adminpage.py │ │ ├── 0004_feedback.py │ │ ├── 0005_delete_feedback.py │ │ ├── 0006_photo.py │ │ ├── 0007_product_delete_photo.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── artgallery │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── artistapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_artist_phone.py │ │ ├── 0003_artistrequest.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── validators.py │ └── views.py ├── customerapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_delete_feedback.py │ │ ├── 0003_initial.py │ │ ├── 0004_delete_feedback.py │ │ ├── 0005_initial.py │ │ ├── 0006_delete_feedback.py │ │ ├── 0007_initial.py │ │ ├── 0008_product.py │ │ ├── 0009_delete_product.py │ │ ├── 0010_passwordresetotp.py │ │ ├── 0011_delete_passwordresetotp.py │ │ ├── 0012_address.py │ │ ├── 0013_delete_address.py │ │ ├── 0014_address.py │ │ ├── 0015_delete_address.py │ │ ├── 0016_address.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── smtp_debug.py ├── static │ ├── css │ │ └── styles.css │ └── js │ │ └── script.js └── templates │ ├── adminapp │ ├── adminhome.html │ ├── artistdata.html │ ├── edit.html │ ├── feedbacks.html │ ├── orders.html │ ├── requests.html │ └── uploadopt.html │ ├── artistapp │ ├── artistabout.html │ ├── artistaddress.html │ ├── artisthome.html │ ├── artistpaymentpage.html │ ├── artistpaymentsuccess.html │ ├── artistupload.html │ └── request.html │ ├── customerapp │ ├── about.html │ ├── address.html │ ├── contact.html │ ├── decontact.html │ ├── greeting.html │ ├── home.html │ ├── home1.html │ ├── index.html │ ├── message.html │ ├── paymentpage.html │ ├── paymentsuccess.html │ ├── search_results.html │ ├── search_results1.html │ ├── userabout.html │ └── userhome.html │ ├── login.html │ ├── registration │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ └── password_reset_form.html │ └── signup.html ├── ex.py └── main.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ARTGALLERY.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/.idea/ARTGALLERY.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/README.md -------------------------------------------------------------------------------- /artgallery/adminapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/adminapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/admin.py -------------------------------------------------------------------------------- /artgallery/adminapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/apps.py -------------------------------------------------------------------------------- /artgallery/adminapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/forms.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0002_adminpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0002_adminpage.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0003_delete_adminpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0003_delete_adminpage.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0004_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0004_feedback.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0005_delete_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0005_delete_feedback.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0006_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0006_photo.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/0007_product_delete_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/migrations/0007_product_delete_photo.py -------------------------------------------------------------------------------- /artgallery/adminapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/adminapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/models.py -------------------------------------------------------------------------------- /artgallery/adminapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/tests.py -------------------------------------------------------------------------------- /artgallery/adminapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/urls.py -------------------------------------------------------------------------------- /artgallery/adminapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/adminapp/views.py -------------------------------------------------------------------------------- /artgallery/artgallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/artgallery/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artgallery/asgi.py -------------------------------------------------------------------------------- /artgallery/artgallery/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artgallery/settings.py -------------------------------------------------------------------------------- /artgallery/artgallery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artgallery/urls.py -------------------------------------------------------------------------------- /artgallery/artgallery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artgallery/views.py -------------------------------------------------------------------------------- /artgallery/artgallery/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artgallery/wsgi.py -------------------------------------------------------------------------------- /artgallery/artistapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/artistapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/admin.py -------------------------------------------------------------------------------- /artgallery/artistapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/apps.py -------------------------------------------------------------------------------- /artgallery/artistapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/forms.py -------------------------------------------------------------------------------- /artgallery/artistapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /artgallery/artistapp/migrations/0002_alter_artist_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/migrations/0002_alter_artist_phone.py -------------------------------------------------------------------------------- /artgallery/artistapp/migrations/0003_artistrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/migrations/0003_artistrequest.py -------------------------------------------------------------------------------- /artgallery/artistapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/artistapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/models.py -------------------------------------------------------------------------------- /artgallery/artistapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/tests.py -------------------------------------------------------------------------------- /artgallery/artistapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/urls.py -------------------------------------------------------------------------------- /artgallery/artistapp/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/validators.py -------------------------------------------------------------------------------- /artgallery/artistapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/artistapp/views.py -------------------------------------------------------------------------------- /artgallery/customerapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/customerapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/admin.py -------------------------------------------------------------------------------- /artgallery/customerapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/apps.py -------------------------------------------------------------------------------- /artgallery/customerapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/forms.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0002_delete_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0002_delete_feedback.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0003_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0003_initial.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0004_delete_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0004_delete_feedback.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0005_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0005_initial.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0006_delete_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0006_delete_feedback.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0007_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0007_initial.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0008_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0008_product.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0009_delete_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0009_delete_product.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0010_passwordresetotp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0010_passwordresetotp.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0011_delete_passwordresetotp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0011_delete_passwordresetotp.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0012_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0012_address.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0013_delete_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0013_delete_address.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0014_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0014_address.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0015_delete_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0015_delete_address.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/0016_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/migrations/0016_address.py -------------------------------------------------------------------------------- /artgallery/customerapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artgallery/customerapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/models.py -------------------------------------------------------------------------------- /artgallery/customerapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/tests.py -------------------------------------------------------------------------------- /artgallery/customerapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/urls.py -------------------------------------------------------------------------------- /artgallery/customerapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/customerapp/views.py -------------------------------------------------------------------------------- /artgallery/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/manage.py -------------------------------------------------------------------------------- /artgallery/smtp_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/smtp_debug.py -------------------------------------------------------------------------------- /artgallery/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/static/css/styles.css -------------------------------------------------------------------------------- /artgallery/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/static/js/script.js -------------------------------------------------------------------------------- /artgallery/templates/adminapp/adminhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/adminhome.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/artistdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/artistdata.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/edit.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/feedbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/feedbacks.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/orders.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/requests.html -------------------------------------------------------------------------------- /artgallery/templates/adminapp/uploadopt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/adminapp/uploadopt.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artistabout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artistabout.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artistaddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artistaddress.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artisthome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artisthome.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artistpaymentpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artistpaymentpage.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artistpaymentsuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artistpaymentsuccess.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/artistupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/artistupload.html -------------------------------------------------------------------------------- /artgallery/templates/artistapp/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/artistapp/request.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/about.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/address.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/contact.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/decontact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/decontact.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/greeting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/greeting.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/home.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/home1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/home1.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/index.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/message.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/paymentpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/paymentpage.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/paymentsuccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/paymentsuccess.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/search_results.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/search_results1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/search_results1.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/userabout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/userabout.html -------------------------------------------------------------------------------- /artgallery/templates/customerapp/userhome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/customerapp/userhome.html -------------------------------------------------------------------------------- /artgallery/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/login.html -------------------------------------------------------------------------------- /artgallery/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /artgallery/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /artgallery/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /artgallery/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /artgallery/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/artgallery/templates/signup.html -------------------------------------------------------------------------------- /ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/ex.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaykallam/ArtGallery/HEAD/main.py --------------------------------------------------------------------------------