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 @@ - - -
- - -Sorry, but the page you are looking for does not exist.
-{% 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 'The following e-mail addresses are associated with your account:' %}
- - - -{% 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 %} - - -{% blocktrans with confirmation.email_address.email as email %}Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.{% endblocktrans %}
- - - -{% 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 %} - - - - -{% 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/login_extra.html" %} - -{% else %} -{% blocktrans %}If you have not created an account yet, then please -sign up first.{% endblocktrans %}
-{% endif %} - - - -{% trans 'Are you sure you want to sign out?' %}
- - -{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}
- - - -{% 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 %} -{% 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 %} -{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}
- {% else %} - {% if form %} - - {% 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 '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 %} -{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}
- - - -{% 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 %} -{% 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 %} -{% 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" %} - -- | Product | -Price | -Quantity | -Total | -
---|---|---|---|---|
-
-
-
- |
- Men Tshirt | -$36.00 | -
-
-
-
-
-
-
-
- |
- $36.00 | -
-
-
-
- |
- Mug Adventure | -$16.00 | -
-
-
-
-
-
-
-
- |
- $16.00 | -
- There are no shipping methods available. Please double check your address, or contact us if you need any help. -
- - - Calculate Shipping - - -- {{ category_description }} -
- - - - -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.
-
- 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. -
- -
- 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. -
- -# | -Product Name | -Price | -Qty | -Total 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 - - | -
- {{ object.description_short }} -
- - -- {{ object.description_long }} -
-- Fusce ornare mi vel risus porttitor dignissim. Nunc eget risus at ipsum blandit ornare vel sed velit. Proin gravida arcu nisl, a dignissim mauris placerat -
-- Fusce ornare mi vel risus porttitor dignissim. Nunc eget risus at ipsum blandit ornare vel sed velit. Proin gravida arcu nisl, a dignissim mauris placerat -
-- All categories -
-{% 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 %} -{% blocktrans %}You can sign in to your account using any of the following third party accounts:{% endblocktrans %}
- - - - -{% else %} -{% trans 'You currently have no social network accounts connected to this account.' %}
-{% endif %} - -{% 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 %} -{% 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 %}
- - - -{% 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 %} -