diff --git a/core/templates/core/article_detail.html b/core/templates/core/article_detail.html index 8820990..6cd5e69 100644 --- a/core/templates/core/article_detail.html +++ b/core/templates/core/article_detail.html @@ -1,14 +1,20 @@ {% extends 'base.html' %} +{% load i18n %} {% block title %}{{ article.title }}{% endblock %} {% block content %}
+
+ + {% trans "Back to Home" %} + +

{{ article.title }}

-

Published on {{ article.created_at|date:"F d, Y" }}

+

{% trans "Published on" %} {{ article.created_at|date:"F d, Y" }}


{{ article.content|safe }}
-{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/core/templates/core/contact.html b/core/templates/core/contact.html index 0a8044c..578976a 100644 --- a/core/templates/core/contact.html +++ b/core/templates/core/contact.html @@ -8,6 +8,13 @@
+ + +
@@ -88,4 +95,4 @@
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/core/templates/core/privacy_policy.html b/core/templates/core/privacy_policy.html index 7edff12..0d8fad5 100644 --- a/core/templates/core/privacy_policy.html +++ b/core/templates/core/privacy_policy.html @@ -3,6 +3,11 @@ {% block content %}
+

{% trans "Privacy Policy" %}

{% if platform_profile and platform_profile.privacy_policy %} @@ -12,4 +17,4 @@ {% endif %}
-{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/core/templates/core/profile.html b/core/templates/core/profile.html index e202561..44f8e41 100644 --- a/core/templates/core/profile.html +++ b/core/templates/core/profile.html @@ -8,6 +8,13 @@
+ + +
@@ -68,4 +75,4 @@ border-radius: 8px; } -{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/core/templates/core/shipment_request.html b/core/templates/core/shipment_request.html index dafbb21..fe0d6b9 100644 --- a/core/templates/core/shipment_request.html +++ b/core/templates/core/shipment_request.html @@ -119,8 +119,9 @@ {% endif %}
-
- +
+ {% trans "Cancel" %} +
diff --git a/core/templates/core/terms_conditions.html b/core/templates/core/terms_conditions.html index 714cab3..a8545cb 100644 --- a/core/templates/core/terms_conditions.html +++ b/core/templates/core/terms_conditions.html @@ -3,6 +3,11 @@ {% block content %}
+

{% trans "Terms and Conditions" %}

{% if platform_profile and platform_profile.terms_conditions %} @@ -12,4 +17,4 @@ {% endif %}
-{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/core/templates/core/verify_otp.html b/core/templates/core/verify_otp.html index 3146e33..1a5b9a0 100644 --- a/core/templates/core/verify_otp.html +++ b/core/templates/core/verify_otp.html @@ -20,7 +20,10 @@
- +
+ {% trans "Cancel" %} + +
@@ -41,4 +44,4 @@ letter-spacing: 0.5em; } -{% endblock %} +{% endblock %} \ No newline at end of file