diff --git a/core/templates/404.html b/core/templates/404.html deleted file mode 100644 index e808623d..00000000 --- a/core/templates/404.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - 404 - Page Not Found - - - -
-

404

-

Oops! Page not found.

-

Sorry, but the page you are looking for does not exist.

-
- - diff --git a/core/templates/about/about_us.html b/core/templates/about/about_us.html deleted file mode 100644 index 4e3e9e70..00000000 --- a/core/templates/about/about_us.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - Document - - -

About Us

- - \ No newline at end of file diff --git a/core/templates/account/account_inactive.html b/core/templates/account/account_inactive.html deleted file mode 100644 index 3347f4fd..00000000 --- a/core/templates/account/account_inactive.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Account Inactive" %}{% endblock %} - -{% block content %} -

{% trans "Account Inactive" %}

- -

{% trans "This account is inactive." %}

-{% endblock %} diff --git a/core/templates/account/base.html b/core/templates/account/base.html deleted file mode 100644 index 94d9808c..00000000 --- a/core/templates/account/base.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "base.html" %} diff --git a/core/templates/account/email.html b/core/templates/account/email.html deleted file mode 100644 index 019e3e8f..00000000 --- a/core/templates/account/email.html +++ /dev/null @@ -1,73 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Account" %}{% endblock %} - -{% block content %} -

{% trans "E-mail Addresses" %}

-{% if user.emailaddress_set.all %} -

{% trans 'The following e-mail addresses are associated with your account:' %}

- -
-{% csrf_token %} -
- - {% for emailaddress in user.emailaddress_set.all %} -
- -
- {% endfor %} - -
- - - -
- -
-
- -{% else %} -

{% trans 'Warning:'%} {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}

- -{% endif %} - - -

{% trans "Add E-mail Address" %}

- -
- {% csrf_token %} - {{ form.as_p }} - -
- -{% endblock %} - - -{% block extra_body %} - -{% endblock %} diff --git a/core/templates/account/email/email_confirmation_message.txt b/core/templates/account/email/email_confirmation_message.txt deleted file mode 100644 index 2d856f76..00000000 --- a/core/templates/account/email/email_confirmation_message.txt +++ /dev/null @@ -1,9 +0,0 @@ -{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}! - -You're receiving this e-mail because user {{ user_display }} has given yours as an e-mail address to connect their account. - -To confirm this is correct, go to {{ activate_url }} -{% endblocktrans %} -{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you from {{ site_name }}! -{{ site_domain }}{% endblocktrans %} -{% endautoescape %} diff --git a/core/templates/account/email/email_confirmation_signup_message.txt b/core/templates/account/email/email_confirmation_signup_message.txt deleted file mode 100644 index 9996f7e5..00000000 --- a/core/templates/account/email/email_confirmation_signup_message.txt +++ /dev/null @@ -1 +0,0 @@ -{% include "account/email/email_confirmation_message.txt" %} diff --git a/core/templates/account/email/email_confirmation_signup_subject.txt b/core/templates/account/email/email_confirmation_signup_subject.txt deleted file mode 100644 index 4c85ebb9..00000000 --- a/core/templates/account/email/email_confirmation_signup_subject.txt +++ /dev/null @@ -1 +0,0 @@ -{% include "account/email/email_confirmation_subject.txt" %} diff --git a/core/templates/account/email/email_confirmation_subject.txt b/core/templates/account/email/email_confirmation_subject.txt deleted file mode 100644 index b0a876f5..00000000 --- a/core/templates/account/email/email_confirmation_subject.txt +++ /dev/null @@ -1,4 +0,0 @@ -{% load i18n %} -{% autoescape off %} -{% blocktrans %}Please Confirm Your E-mail Address{% endblocktrans %} -{% endautoescape %} diff --git a/core/templates/account/email/password_reset_key_message.txt b/core/templates/account/email/password_reset_key_message.txt deleted file mode 100644 index d74dfa82..00000000 --- a/core/templates/account/email/password_reset_key_message.txt +++ /dev/null @@ -1,12 +0,0 @@ -{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}! - -You're receiving this e-mail because you or someone else has requested a password for your user account. -It can be safely ignored if you did not request a password reset. Click the link below to reset your password.{% endblocktrans %} - -{{ password_reset_url }} - -{% if username %}{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %} - -{% endif %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you for using {{ site_name }}! -{{ site_domain }}{% endblocktrans %} -{% endautoescape %} diff --git a/core/templates/account/email/password_reset_key_subject.txt b/core/templates/account/email/password_reset_key_subject.txt deleted file mode 100644 index 6840c40b..00000000 --- a/core/templates/account/email/password_reset_key_subject.txt +++ /dev/null @@ -1,4 +0,0 @@ -{% load i18n %} -{% autoescape off %} -{% blocktrans %}Password Reset E-mail{% endblocktrans %} -{% endautoescape %} diff --git a/core/templates/account/email_confirm.html b/core/templates/account/email_confirm.html deleted file mode 100644 index ac0891b5..00000000 --- a/core/templates/account/email_confirm.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% load account %} - -{% block head_title %}{% trans "Confirm E-mail Address" %}{% endblock %} - - -{% block content %} -

{% trans "Confirm E-mail Address" %}

- -{% if confirmation %} - -{% user_display confirmation.email_address.user as user_display %} - -

{% blocktrans with confirmation.email_address.email as email %}Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.{% endblocktrans %}

- -
-{% csrf_token %} - -
- -{% else %} - -{% url 'account_email' as email_url %} - -

{% blocktrans %}This e-mail confirmation link expired or is invalid. Please issue a new e-mail confirmation request.{% endblocktrans %}

- -{% endif %} - -{% endblock %} diff --git a/core/templates/account/login.html b/core/templates/account/login.html deleted file mode 100644 index 8af843de..00000000 --- a/core/templates/account/login.html +++ /dev/null @@ -1,66 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% load account socialaccount %} -{% load crispy_forms_tags %} - -{% block head_title %}{% trans "Sign In" %}{% endblock %} - -{% block content %} - - - - -
-
- -
-

{% trans "Sign In" %}

- -{% get_providers as socialaccount_providers %} - -{% if socialaccount_providers %} -

{% blocktrans with site.name as site_name %}Please sign in with one -of your existing third party accounts. Or, sign up -for a {{ site_name }} account and sign in below:{% endblocktrans %}

- -
- -
    - {% include "socialaccount/snippets/provider_list.html" with process="login" %} -
- - - -
- -{% include "socialaccount/snippets/login_extra.html" %} - -{% else %} -

{% blocktrans %}If you have not created an account yet, then please -sign up first.{% endblocktrans %}

-{% endif %} - - - -
-
-
- - -{% endblock %} diff --git a/core/templates/account/logout.html b/core/templates/account/logout.html deleted file mode 100644 index d00eb7ba..00000000 --- a/core/templates/account/logout.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans -"Sign Out" %}{% endblock %} {% block content %} - - - - -
-
- -
-

{% trans "Sign Out" %}

- -

{% trans 'Are you sure you want to sign out?' %}

- -
- {% csrf_token %} {% if redirect_field_value %} - - {% endif %} - -
-
-
-
-{% endblock %} diff --git a/core/templates/account/messages/cannot_delete_primary_email.txt b/core/templates/account/messages/cannot_delete_primary_email.txt deleted file mode 100644 index de555712..00000000 --- a/core/templates/account/messages/cannot_delete_primary_email.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}You cannot remove your primary e-mail address ({{email}}).{% endblocktrans %} diff --git a/core/templates/account/messages/email_confirmation_sent.txt b/core/templates/account/messages/email_confirmation_sent.txt deleted file mode 100644 index 7a526f8b..00000000 --- a/core/templates/account/messages/email_confirmation_sent.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Confirmation e-mail sent to {{email}}.{% endblocktrans %} diff --git a/core/templates/account/messages/email_confirmed.txt b/core/templates/account/messages/email_confirmed.txt deleted file mode 100644 index 3427a4d8..00000000 --- a/core/templates/account/messages/email_confirmed.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}You have confirmed {{email}}.{% endblocktrans %} diff --git a/core/templates/account/messages/email_deleted.txt b/core/templates/account/messages/email_deleted.txt deleted file mode 100644 index 5cf7cf91..00000000 --- a/core/templates/account/messages/email_deleted.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Removed e-mail address {{email}}.{% endblocktrans %} diff --git a/core/templates/account/messages/logged_in.txt b/core/templates/account/messages/logged_in.txt deleted file mode 100644 index f49248a7..00000000 --- a/core/templates/account/messages/logged_in.txt +++ /dev/null @@ -1,4 +0,0 @@ -{% load account %} -{% load i18n %} -{% user_display user as name %} -{% blocktrans %}Successfully signed in as {{name}}.{% endblocktrans %} diff --git a/core/templates/account/messages/logged_out.txt b/core/templates/account/messages/logged_out.txt deleted file mode 100644 index 2cd4627d..00000000 --- a/core/templates/account/messages/logged_out.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}You have signed out.{% endblocktrans %} diff --git a/core/templates/account/messages/password_changed.txt b/core/templates/account/messages/password_changed.txt deleted file mode 100644 index bd5801c4..00000000 --- a/core/templates/account/messages/password_changed.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Password successfully changed.{% endblocktrans %} diff --git a/core/templates/account/messages/password_set.txt b/core/templates/account/messages/password_set.txt deleted file mode 100644 index 9d224ee0..00000000 --- a/core/templates/account/messages/password_set.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Password successfully set.{% endblocktrans %} diff --git a/core/templates/account/messages/primary_email_set.txt b/core/templates/account/messages/primary_email_set.txt deleted file mode 100644 index b6a70dd6..00000000 --- a/core/templates/account/messages/primary_email_set.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Primary e-mail address set.{% endblocktrans %} diff --git a/core/templates/account/messages/unverified_primary_email.txt b/core/templates/account/messages/unverified_primary_email.txt deleted file mode 100644 index 9c9d0d87..00000000 --- a/core/templates/account/messages/unverified_primary_email.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}Your primary e-mail address must be verified.{% endblocktrans %} diff --git a/core/templates/account/password_change.html b/core/templates/account/password_change.html deleted file mode 100644 index b5365791..00000000 --- a/core/templates/account/password_change.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Change Password" %}{% endblock %} - -{% block content %} -

{% trans "Change Password" %}

- -
- {% csrf_token %} - {{ form.as_p }} - -
-{% endblock %} diff --git a/core/templates/account/password_reset.html b/core/templates/account/password_reset.html deleted file mode 100644 index de23d9eb..00000000 --- a/core/templates/account/password_reset.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% load account %} - -{% block head_title %}{% trans "Password Reset" %}{% endblock %} - -{% block content %} - -

{% trans "Password Reset" %}

- {% if user.is_authenticated %} - {% include "account/snippets/already_logged_in.html" %} - {% endif %} - -

{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}

- -
- {% csrf_token %} - {{ form.as_p }} - -
- -

{% blocktrans %}Please contact us if you have any trouble resetting your password.{% endblocktrans %}

-{% endblock %} diff --git a/core/templates/account/password_reset_done.html b/core/templates/account/password_reset_done.html deleted file mode 100644 index e90504f7..00000000 --- a/core/templates/account/password_reset_done.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% load account %} - -{% block head_title %}{% trans "Password Reset" %}{% endblock %} - -{% block content %} -

{% trans "Password Reset" %}

- - {% if user.is_authenticated %} - {% include "account/snippets/already_logged_in.html" %} - {% endif %} - -

{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}

-{% endblock %} diff --git a/core/templates/account/password_reset_from_key.html b/core/templates/account/password_reset_from_key.html deleted file mode 100644 index 16f27e9c..00000000 --- a/core/templates/account/password_reset_from_key.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% block head_title %}{% trans "Change Password" %}{% endblock %} - -{% block content %} -

{% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %}

- - {% if token_fail %} - {% url 'account_reset_password' as passwd_reset_url %} -

{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}

- {% else %} - {% if form %} -
- {% csrf_token %} - {{ form.as_p }} - -
- {% else %} -

{% trans 'Your password is now changed.' %}

- {% endif %} - {% endif %} -{% endblock %} diff --git a/core/templates/account/password_reset_from_key_done.html b/core/templates/account/password_reset_from_key_done.html deleted file mode 100644 index 85641c2e..00000000 --- a/core/templates/account/password_reset_from_key_done.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% block head_title %}{% trans "Change Password" %}{% endblock %} - -{% block content %} -

{% trans "Change Password" %}

-

{% trans 'Your password is now changed.' %}

-{% endblock %} diff --git a/core/templates/account/password_set.html b/core/templates/account/password_set.html deleted file mode 100644 index f5615720..00000000 --- a/core/templates/account/password_set.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Set Password" %}{% endblock %} - -{% block content %} -

{% trans "Set Password" %}

- -
- {% csrf_token %} - {{ form.as_p }} - -
-{% endblock %} diff --git a/core/templates/account/signup.html b/core/templates/account/signup.html deleted file mode 100644 index db158e92..00000000 --- a/core/templates/account/signup.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} -{% load crispy_forms_tags %} - -{% block head_title %}{% trans "Signup" %}{% endblock %} - -{% block content %} - - - -
-
- -
-

{% trans "Sign Up" %}

- -

{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}

- - - -
-
-
- -{% endblock %} diff --git a/core/templates/account/signup_closed.html b/core/templates/account/signup_closed.html deleted file mode 100644 index bc839506..00000000 --- a/core/templates/account/signup_closed.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Sign Up Closed" %}{% endblock %} - -{% block content %} -

{% trans "Sign Up Closed" %}

- -

{% trans "We are sorry, but the sign up is currently closed." %}

-{% endblock %} diff --git a/core/templates/account/snippets/already_logged_in.html b/core/templates/account/snippets/already_logged_in.html deleted file mode 100644 index 00799f00..00000000 --- a/core/templates/account/snippets/already_logged_in.html +++ /dev/null @@ -1,5 +0,0 @@ -{% load i18n %} -{% load account %} - -{% user_display user as user_display %} -

{% trans "Note" %}: {% blocktrans %}you are already logged in as {{ user_display }}.{% endblocktrans %}

diff --git a/core/templates/account/verification_sent.html b/core/templates/account/verification_sent.html deleted file mode 100644 index 5f713319..00000000 --- a/core/templates/account/verification_sent.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Verify Your E-mail Address" %}{% endblock %} - -{% block content %} -

{% trans "Verify Your E-mail Address" %}

- -

{% blocktrans %}We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}

- -{% endblock %} diff --git a/core/templates/account/verified_email_required.html b/core/templates/account/verified_email_required.html deleted file mode 100644 index 8115c489..00000000 --- a/core/templates/account/verified_email_required.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "account/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Verify Your E-mail Address" %}{% endblock %} - -{% block content %} -

{% trans "Verify Your E-mail Address" %}

- -{% url 'account_email' as email_url %} - -

{% blocktrans %}This part of the site requires us to verify that -you are who you claim to be. For this purpose, we require that you -verify ownership of your e-mail address. {% endblocktrans %}

- -

{% blocktrans %}We have sent an e-mail to you for -verification. Please click on the link inside this e-mail. Please -contact us if you do not receive it within a few minutes.{% endblocktrans %}

- -

{% blocktrans %}Note: you can still change your e-mail address.{% endblocktrans %}

- - -{% endblock %} diff --git a/core/templates/base.html b/core/templates/base.html deleted file mode 100644 index 05136780..00000000 --- a/core/templates/base.html +++ /dev/null @@ -1,61 +0,0 @@ -{% load static %} - - - {% include "header.html" %} - - {% block head_title %}{% endblock %} - {% block extra_head %} {% endblock %} - - - {% include "nav.html" %} -
- {% if messages %} {% for message in messages %} - -
- - {% endfor %} - {% endif %} - - {% block content %} - {% endblock content %} - - {% block extra_body %} - {% endblock %} - - {% include "footer.html"%} - {% include "script.html"%} - - {% block extra_scripts %} - {% endblock extra_scripts %} - - diff --git a/core/templates/cart.html b/core/templates/cart.html deleted file mode 100644 index 3cca3f67..00000000 --- a/core/templates/cart.html +++ /dev/null @@ -1,767 +0,0 @@ - - - - Cart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
- - - - - -
- - - Free shipping for standard order over $100 - - -
- - fashe@example.com - - -
- -
-
-
- -
- - - - -
- -
- - -
- - ICON - - - - -
- ICON - 0 - - -
- - -
- Total: $75.00 -
- - -
-
-
-
-
- - -
- - - IMG-LOGO - - - -
- -
- - ICON - - - - -
- ICON - 0 - - -
- - -
- Total: $75.00 -
- - -
-
-
- -
- - - -
-
-
- - -
- -
-
- - -
-

- Cart -

-
- - -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
ProductPriceQuantityTotal
-
- IMG-PRODUCT -
-
Men Tshirt$36.00 -
- - - - - -
-
$36.00
-
- IMG-PRODUCT -
-
Mug Adventure$16.00 -
- - - - - -
-
$16.00
-
-
- -
-
-
- -
- -
- - -
-
- -
- - -
-
- - -
-
- Cart Totals -
- - -
- - Subtotal: - - - - $39.00 - -
- - -
- - Shipping: - - -
-

- There are no shipping methods available. Please double check your address, or contact us if you need any help. -

- - - Calculate Shipping - - -
- -
- -
- -
- -
- -
- -
- - -
-
-
- - -
- - Total: - - - - $39.00 - -
- -
- - -
-
-
-
- - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/templates/category.html b/core/templates/category.html deleted file mode 100644 index 557b70bb..00000000 --- a/core/templates/category.html +++ /dev/null @@ -1,245 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% load category_template_tags %} -{% block content %} - - - -
-
-

- {{ category_title }} -

-

- {{ category_description }} -

- - - - -
-
-
-
-
- -

- Categories -

- -
    -
  • - - All - -
  • - - {% categories_li_a %} - -
- - -

- Filters -

- -
-
- Price -
- -
-
-
- -
-
- - -
- -
- Range: $610 - $980 -
-
-
- -
-
- Color -
- -
    -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • -
-
- -
- - - -
-
-
- -
- -
-
- -
- -
- -
- -
-
- - - Showing 1–12 of 16 results - -
- - -
- {% for item in object_list %} -
- -
- -
- IMG-PRODUCT - - - - - - - - - -
-
- -
- - {{item.title}} - - - - ${{item.price}} - -
-
-
- {% endfor %} - - - - - -
- - -
- - {% if is_paginated %} - - {% endif %} -
-
-
- - - {% endblock content %} diff --git a/core/templates/checkout.html b/core/templates/checkout.html deleted file mode 100644 index 396ce3d2..00000000 --- a/core/templates/checkout.html +++ /dev/null @@ -1,138 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% load crispy_forms_tags %} - -{% block content %} - - - - - -
-
- -

Checkout form

-

Below is an example form built entirely with Bootstrap’s form controls. Each required form group has a validation state that can be triggered by attempting to submit the form without completing it.

-
- -
- - -
- -

Billing address

-
- {% csrf_token %} -
- - {{ form.street_address }} -
- -
- - {{ form.apartment_address }} -
- -
-
- - {{ form.country }} -
- Please select a valid country. -
-
-
- - -
- Please provide a valid state. -
-
-
- - {{ form.zip }} -
- Zip code required. -
-
-
-
-
- - - -
-
- - - -
-
- -

Payment

- -
- {% for value, name in form.fields.payment_option.choices %} -
- - -
- {% endfor %} -
- -
- -
-
- - {% include "order_snippet.html" %} - -
- - -
-{% endblock content %} \ No newline at end of file diff --git a/core/templates/contact_form.html b/core/templates/contact_form.html deleted file mode 100644 index 3102b571..00000000 --- a/core/templates/contact_form.html +++ /dev/null @@ -1,94 +0,0 @@ -
-
-
-

- Contact Us -

-

- We're here to assist you! If you have any questions or need assistance, - please feel free to reach out to us. -

- You can also email us. Click here to reveal email address : -

My Email Adress

-

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque. -

- -
-
-

- Contact Form -

-
- {% csrf_token %} -
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
- -
-
-
-
-
diff --git a/core/templates/footer.html b/core/templates/footer.html deleted file mode 100644 index 3317e781..00000000 --- a/core/templates/footer.html +++ /dev/null @@ -1,107 +0,0 @@ -{% load static %} - - - - - - - - diff --git a/core/templates/header.html b/core/templates/header.html deleted file mode 100644 index ef18db0e..00000000 --- a/core/templates/header.html +++ /dev/null @@ -1,91 +0,0 @@ -{% load static %} - - Home - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/templates/index.html b/core/templates/index.html deleted file mode 100644 index 2022e725..00000000 --- a/core/templates/index.html +++ /dev/null @@ -1,628 +0,0 @@ -{% extends 'base.html' %} {% load static %} {% block content %} - - - -
-
-
- - - - - - - - - - - - - - - - -
-
-
- - - - - - - -
-
-
-

Featured Products

-
- - -
-
- {% for item in object_list %} - -
- -
-
- - IMG-PRODUCT - - -
- -
- - {{ item.title }} - - - {% if item.discount_price %} - - ${{ item.price }} - - - - ${{ item.discount_price }} - - {% else %} - - ${{ item.price }} - - {% endif %} -
-
-
- - {% endfor %} -
-
-
-
- - - -
-

Season's Essentials

-
-
-
-
- IMG-BANNER - -
-




-




- Bold, Brights Looks - -
- - -
-
-
- -
-
- IMG-BANNER - -
-




-




- Stay Active - -
- - -
-
-
-
-
-
- - - - - - -

-
-
-
-
-
- - Nike ZoomX Vaporfly NEXT% - -

- FAST IS BACK -

- -
-
-
-
-
- - - - - -
-

Training's Essentials

-
-
-
-
- IMG-BANNER - -
-




-




- SuperRe Go - -
- - -
-
-
- -
-
- IMG-BANNER - -
-




-




- - Bras and Leggings - - -
- - -
-
-
-
-
-
- - - - -
-

More Products

-
-
-
-
- IMG-BANNER - -
-




-




-




- -
- - -
-
-
- -
-
- IMG-BANNER - -
-




-




-




- -
- - -
-
-
- -
-
- IMG-BANNER - -
-




-




-




- -
- - -
-
-
-
-
-
- - - -
-
-
-

Free Delivery Worldwide

- - Click here for more info -
- -
-

30 Days Return

- - - Simply return it within 30 days for an exchange. - -
- -
-

Store Opening

- - Shop open from Monday to Sunday -
-
-
- - - -
-
-
-

- Contact Us -

-

- We're here to assist you! If you have any questions or need assistance, - please feel free to reach out to us. -

- You can also email us. Click here to reveal email address : -

My Email Adress

-

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque. -

- -
-
-

- Contact Form -

-
- {% csrf_token %} -
-
- - -
-
-
-
- - -
-
-
-
- - -
-
-
- -
-
-
-
-
- -{% endblock content %} diff --git a/core/templates/item_list.html b/core/templates/item_list.html deleted file mode 100644 index db41d94c..00000000 --- a/core/templates/item_list.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "base.html" %} {% block content %} - -

Here is the list of items

- -{% endblock content%} diff --git a/core/templates/nav.html b/core/templates/nav.html deleted file mode 100644 index e1b81be4..00000000 --- a/core/templates/nav.html +++ /dev/null @@ -1,358 +0,0 @@ -{% load static %} - - - -
- -
-
-
- - - -
- - - Lorem ipsum dolor sit amet consectetur adipisicing elit. - - -
- - - s3bu7i - - - -
- -
-
-
- -
- - - - -
- -
- - -
- - ICON - - - - -
- ICON - 0 - - -
- - -
Total: $75.00
- - -
-
-
-
-
- - -
- - - IMG-LOGO - - - -
- -
- - ICON - - - - -
- ICON - 0 - - -
- - -
Total: $75.00
- - -
-
-
- -
- - - -
-
-
- - -
- -
-
diff --git a/core/templates/openid/base.html b/core/templates/openid/base.html deleted file mode 100644 index 671d403c..00000000 --- a/core/templates/openid/base.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "socialaccount/base.html" %} diff --git a/core/templates/openid/login.html b/core/templates/openid/login.html deleted file mode 100644 index b27ee371..00000000 --- a/core/templates/openid/login.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "openid/base.html" %} - -{% load i18n %} - -{% block head_title %}OpenID Sign In{% endblock %} - -{% block content %} - -

{% trans 'OpenID Sign In' %}

- - -
-{% csrf_token %} -{{form.as_p}} - -
- -{% endblock %} diff --git a/core/templates/order_snippet.html b/core/templates/order_snippet.html deleted file mode 100644 index edb47801..00000000 --- a/core/templates/order_snippet.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - -
-

- Your cart - {{ order.items.count }} -

- - - {% if DISPLAY_COUPON_FORM %} -
- {% csrf_token %} -
- {{ couponform.code }} -
- -
-
-
- {% endif %} -
- - - - - diff --git a/core/templates/order_summary.html b/core/templates/order_summary.html deleted file mode 100644 index ca7e94dc..00000000 --- a/core/templates/order_summary.html +++ /dev/null @@ -1,78 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% block content %} - -
- - - -
-
-

Order Summary

- - - - - - - - - - - - {% for order_item in object.items.all %} - - - - - - - - - {% empty %} - - - - - {% endfor %} - {% if object.coupon %} - - - - - {% endif%} - {% if object.get_total %} - - - - - - - - {% endif %} -
#Product NamePriceQtyTotal Price
{{ forloop.counter }} - - {{ order_item.item.title }}{{ order_item.item.price }} - - {{ order_item.quantity }} - - - {% if order_item.item.discount_price %} - ${{ order_item.get_total_discount_item_price}} - Saving ${{ order_item.get_amount_saved }} - {% else %} - ${{ order_item.get_total_item_price}} - {% endif %} - - - -
Your cart is empty
Coupon : - ${{ object.coupon.amount }}
Order Total : ${{ object.get_total }}
- Checkout - Continue Shopping - -
-
-
-
- -{% endblock content %} diff --git a/core/templates/payment.html b/core/templates/payment.html deleted file mode 100644 index b59d6b53..00000000 --- a/core/templates/payment.html +++ /dev/null @@ -1,273 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% load crispy_forms_tags %} - -{% block extra_head %} - -{% endblock extra_head %} - -{% block content %} - - - - - -
- - -
- - -
-

Payment form

- - - {% if card %} -
-
- - -
-
- {% endif %} - -
-
- {% csrf_token %} - -
- -
- -
-
- -
-
- {% csrf_token %} -
- -
-
-
- -
-
-
- - -
-
- -
-
-
- - {% include "order_snippet.html" %} - -
- - -
-{% endblock content %} - - -{% block extra_scripts %} - - - -{% endblock extra_scripts %} \ No newline at end of file diff --git a/core/templates/product-detail.html b/core/templates/product-detail.html deleted file mode 100644 index 12a55ff8..00000000 --- a/core/templates/product-detail.html +++ /dev/null @@ -1,660 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% block content %} - - - - - -
-
-
-
-
- -
-
-
- {{ object.title }} -
-
- -
-
- IMG-PRODUCT -
-
- -
-
- IMG-PRODUCT -
-
-
-
-
- -
-

- {{object.title}} -

- - - {% if object.discount_price %} - - ${{ object.price }} - - - - ${{ object.discount_price }} - - {% else %} - - ${{object.price}} - - {% endif %} - -

- {{ object.description_short }} -

- - -
-
-
- Size -
- -
- -
-
- -
-
- Color -
- -
- -
-
- -
-
-
- - - - - -
- -
- - - - -
- - Add to Cart - Remove from Cart -
-
-
-
-
- SKU: {{ object.stock_no }} - Categories: {{ object.category }} -
- - -
-
- Description - - -
- - -
- -
-
- Additional information - - -
- - -
- -
-
- Reviews (0) - - -
- - -
-
-
-
- - - -
-
-
-

- Related Products -

-
- - -
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Herschel supply co 25l - - - - $75.00 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Denim jacket blue - - - - $92.50 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Coach slim easton black - - - - $165.90 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Frayed denim shorts - - - - $29.50 - - - - $15.90 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Herschel supply co 25l - - - - $75.00 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Denim jacket blue - - - - $92.50 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Coach slim easton black - - - - $165.90 - -
-
-
- -
- -
-
- IMG-PRODUCT - -
- - - - - -
- - -
-
-
- -
- - Frayed denim shorts - - - - $29.50 - - - - $15.90 - -
-
-
-
-
- -
-
- - - - - - - - -
- - - -
- - - - - - {% endblock content %} \ No newline at end of file diff --git a/core/templates/request_refund.html b/core/templates/request_refund.html deleted file mode 100644 index ae3deae3..00000000 --- a/core/templates/request_refund.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% load crispy_forms_tags %} -{% block content %} - - -
-
-
-

Request Refund

-
- {% csrf_token %} - {{form|crispy}} - -
- -
-
-
- -{% endblock content %} diff --git a/core/templates/script.html b/core/templates/script.html deleted file mode 100644 index a6d1d096..00000000 --- a/core/templates/script.html +++ /dev/null @@ -1,71 +0,0 @@ -{% load static %} - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/templates/shop.html b/core/templates/shop.html deleted file mode 100644 index 18fc90d8..00000000 --- a/core/templates/shop.html +++ /dev/null @@ -1,242 +0,0 @@ -{% extends 'base.html' %} -{% load static %} -{% load category_template_tags %} -{% block content %} - - - -
-

- Shop -

-

- All categories -

-
- - - -
-
-
-
-
- -

- Categories -

- -
    -
  • - - All - -
  • - - {% categories_li_a %} - -
- - -

- Filters -

- -
-
- Price -
- -
-
-
- -
-
- - -
- -
- Range: $610 - $980 -
-
-
- -
-
- Color -
- -
    -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • -
-
- -
- - - -
-
-
- -
- -
-
- -
- -
- -
- -
-
- - - Showing 1–12 of 16 results - -
- - -
- {% for item in object_list %} -
- -
- -
- IMG-PRODUCT - - - - - -
-
- -
- - {{item.title}} - - - - ${{item.price}} - -
-
-
- {% endfor %} - - - - - -
- - -
- - {% if is_paginated %} - - {% endif %} -
-
-
- - - {% endblock content %} diff --git a/core/templates/socialaccount/authentication_error.html b/core/templates/socialaccount/authentication_error.html deleted file mode 100644 index 03002955..00000000 --- a/core/templates/socialaccount/authentication_error.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "socialaccount/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Social Network Login Failure" %}{% endblock %} - -{% block content %} -

{% trans "Social Network Login Failure" %}

- -

{% trans "An error occurred while attempting to login via your social network account." %}

-{% endblock %} diff --git a/core/templates/socialaccount/base.html b/core/templates/socialaccount/base.html deleted file mode 100644 index b64fd563..00000000 --- a/core/templates/socialaccount/base.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "account/base.html" %} diff --git a/core/templates/socialaccount/connections.html b/core/templates/socialaccount/connections.html deleted file mode 100644 index f7c2729f..00000000 --- a/core/templates/socialaccount/connections.html +++ /dev/null @@ -1,54 +0,0 @@ -{% extends "socialaccount/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Account Connections" %}{% endblock %} - -{% block content %} -

{% trans "Account Connections" %}

- -{% if form.accounts %} -

{% blocktrans %}You can sign in to your account using any of the following third party accounts:{% endblocktrans %}

- - -
-{% csrf_token %} - -
-{% if form.non_field_errors %} -
{{ form.non_field_errors }}
-{% endif %} - -{% for base_account in form.accounts %} -{% with base_account.get_provider_account as account %} -
- -
-{% endwith %} -{% endfor %} - -
- -
- -
- -
- -{% else %} -

{% trans 'You currently have no social network accounts connected to this account.' %}

-{% endif %} - -

{% trans 'Add a 3rd Party Account' %}

- - - -{% include "socialaccount/snippets/login_extra.html" %} - -{% endblock %} diff --git a/core/templates/socialaccount/login_cancelled.html b/core/templates/socialaccount/login_cancelled.html deleted file mode 100644 index 8d767865..00000000 --- a/core/templates/socialaccount/login_cancelled.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "socialaccount/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Login Cancelled" %}{% endblock %} - -{% block content %} - -

{% trans "Login Cancelled" %}

- -{% url 'account_login' as login_url %} - -

{% blocktrans %}You decided to cancel logging in to our site using one of your existing accounts. If this was a mistake, please proceed to sign in.{% endblocktrans %}

- -{% endblock %} diff --git a/core/templates/socialaccount/messages/account_connected.txt b/core/templates/socialaccount/messages/account_connected.txt deleted file mode 100644 index be6aa60f..00000000 --- a/core/templates/socialaccount/messages/account_connected.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}The social account has been connected.{% endblocktrans %} diff --git a/core/templates/socialaccount/messages/account_connected_other.txt b/core/templates/socialaccount/messages/account_connected_other.txt deleted file mode 100644 index e90f6ccc..00000000 --- a/core/templates/socialaccount/messages/account_connected_other.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}The social account is already connected to a different account.{% endblocktrans %} diff --git a/core/templates/socialaccount/messages/account_connected_updated.txt b/core/templates/socialaccount/messages/account_connected_updated.txt deleted file mode 100644 index 3f7174e8..00000000 --- a/core/templates/socialaccount/messages/account_connected_updated.txt +++ /dev/null @@ -1 +0,0 @@ -{% extends "socialaccount/messages/account_connected.txt" %} diff --git a/core/templates/socialaccount/messages/account_disconnected.txt b/core/templates/socialaccount/messages/account_disconnected.txt deleted file mode 100644 index fd43f30e..00000000 --- a/core/templates/socialaccount/messages/account_disconnected.txt +++ /dev/null @@ -1,2 +0,0 @@ -{% load i18n %} -{% blocktrans %}The social account has been disconnected.{% endblocktrans %} diff --git a/core/templates/socialaccount/signup.html b/core/templates/socialaccount/signup.html deleted file mode 100644 index caa2de2e..00000000 --- a/core/templates/socialaccount/signup.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "socialaccount/base.html" %} - -{% load i18n %} - -{% block head_title %}{% trans "Signup" %}{% endblock %} - -{% block content %} -

{% trans "Sign Up" %}

- -

{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}You are about to use your {{provider_name}} account to login to -{{site_name}}. As a final step, please complete the following form:{% endblocktrans %}

- -
- {% csrf_token %} - {{ form.as_p }} - {% if redirect_field_value %} - - {% endif %} - -
- -{% endblock %} diff --git a/core/templates/socialaccount/snippets/login_extra.html b/core/templates/socialaccount/snippets/login_extra.html deleted file mode 100644 index 307def40..00000000 --- a/core/templates/socialaccount/snippets/login_extra.html +++ /dev/null @@ -1,3 +0,0 @@ -{% load socialaccount %} - -{% providers_media_js %} diff --git a/core/templates/socialaccount/snippets/provider_list.html b/core/templates/socialaccount/snippets/provider_list.html deleted file mode 100644 index 33ef7b8f..00000000 --- a/core/templates/socialaccount/snippets/provider_list.html +++ /dev/null @@ -1,22 +0,0 @@ -{% load socialaccount %} - -{% get_providers as socialaccount_providers %} - -{% for provider in socialaccount_providers %} -{% if provider.id == "openid" %} -{% for brand in provider.get_brands %} -
  • - {{brand.name}} -
  • -{% endfor %} -{% endif %} -
  • - {{provider.name}} -
  • -{% endfor %} - - diff --git a/core/templates/tests/test_403_csrf.html b/core/templates/tests/test_403_csrf.html deleted file mode 100644 index 86f9aea5..00000000 --- a/core/templates/tests/test_403_csrf.html +++ /dev/null @@ -1,2 +0,0 @@ -{% load socialaccount %} -Sign In diff --git a/demo/__pycache__/settings.cpython-312.pyc b/demo/__pycache__/settings.cpython-312.pyc index c1f4fc0c..b8a0c5b4 100644 Binary files a/demo/__pycache__/settings.cpython-312.pyc and b/demo/__pycache__/settings.cpython-312.pyc differ