diff --git a/crm/templates/crm/add_prospect.html b/crm/templates/crm/add_prospect.html index bb94611..53a667a 100644 --- a/crm/templates/crm/add_prospect.html +++ b/crm/templates/crm/add_prospect.html @@ -3,7 +3,7 @@ {% block content %}
-
+

Add New Prospect

diff --git a/crm/templates/crm/base.html b/crm/templates/crm/base.html index 51e4079..56621af 100644 --- a/crm/templates/crm/base.html +++ b/crm/templates/crm/base.html @@ -44,7 +44,7 @@
-
+
-
+

{% if form.instance.pk %}Edit{% else %}Add{% endif %} Event

diff --git a/crm/templates/crm/events.html b/crm/templates/crm/events.html index d2fcfd5..372ff23 100644 --- a/crm/templates/crm/events.html +++ b/crm/templates/crm/events.html @@ -23,7 +23,7 @@
-
+

Completed Events

@@ -39,7 +39,7 @@
-
+

Planned Events

diff --git a/shop/templates/shop/cart.html b/shop/templates/shop/cart.html index ced18b3..d9d2a3f 100644 --- a/shop/templates/shop/cart.html +++ b/shop/templates/shop/cart.html @@ -25,8 +25,8 @@ {% endif %}
-
-

Votre panier

+
+

Votre panier

{% if display_data.items %}
diff --git a/shop/templates/shop/checkout.html b/shop/templates/shop/checkout.html index 0956084..15098ed 100644 --- a/shop/templates/shop/checkout.html +++ b/shop/templates/shop/checkout.html @@ -17,9 +17,9 @@ Se connecter {% endif %} -

Validation de la commande

+

Validation de la commande

-
+
{% if request.user.is_authenticated %}
diff --git a/shop/templates/shop/payment.html b/shop/templates/shop/payment.html index b9c9db4..4517651 100644 --- a/shop/templates/shop/payment.html +++ b/shop/templates/shop/payment.html @@ -25,8 +25,8 @@
-
-

Résumé de votre commande

+
+

Résumé de votre commande

{% include 'shop/partials/order_items_display.html' with items=display_data.items total_quantity=display_data.total_quantity total_price=display_data.total_price edit_mode=False %} diff --git a/shop/templates/shop/payment_cancel.html b/shop/templates/shop/payment_cancel.html index b514012..996d4e6 100644 --- a/shop/templates/shop/payment_cancel.html +++ b/shop/templates/shop/payment_cancel.html @@ -20,8 +20,8 @@
-
-

Paiement

+
+

Paiement

Le paiement a été annulé

Votre commande n'a pas été finalisée car le paiement a été annulé.

diff --git a/shop/templates/shop/payment_success.html b/shop/templates/shop/payment_success.html index 3a42ff9..e8880a5 100644 --- a/shop/templates/shop/payment_success.html +++ b/shop/templates/shop/payment_success.html @@ -18,8 +18,8 @@
-
-

Paiement réussi

+
+

Paiement réussi

Merci pour votre commande !

Votre paiement a été traité avec succès.

diff --git a/shop/templates/shop/product_item.html b/shop/templates/shop/product_item.html index bb7c275..8ad9ba7 100644 --- a/shop/templates/shop/product_item.html +++ b/shop/templates/shop/product_item.html @@ -1,5 +1,5 @@ {% load shop_extras %} -
+
{% if product.image %}
diff --git a/tournaments/static/tournaments/css/basics.css b/tournaments/static/tournaments/css/basics.css index acbc62d..19dee98 100644 --- a/tournaments/static/tournaments/css/basics.css +++ b/tournaments/static/tournaments/css/basics.css @@ -6,6 +6,10 @@ /* PADDING */ +.padding10 { + padding: 10px; +} + .padding15 { padding: 15px; } @@ -14,6 +18,10 @@ padding: 20px; } +.hpadding10 { + padding: 0px 10px; +} + /* MARGIN */ .margin10 { diff --git a/tournaments/static/tournaments/css/blue_style.css b/tournaments/static/tournaments/css/blue_style.css index 634f252..d53e5b0 100644 --- a/tournaments/static/tournaments/css/blue_style.css +++ b/tournaments/static/tournaments/css/blue_style.css @@ -137,7 +137,7 @@ p { margin-top: 20px; } -.my-block { +.padding10 { padding: 10px 10px; } .simple { diff --git a/tournaments/static/tournaments/css/style.css b/tournaments/static/tournaments/css/style.css index 93e177f..33861dd 100644 --- a/tournaments/static/tournaments/css/style.css +++ b/tournaments/static/tournaments/css/style.css @@ -399,10 +399,6 @@ tr { margin: 0 auto; } -.my-block { - padding: 10px 10px; -} - .red { background-color: #e84038; } @@ -576,7 +572,7 @@ h-margin { .table-row-1-colum { display: grid; - grid-template-columns: 1px auto; + grid-template-columns: 1fr; /* Vertically center the content within each column */ padding: 5px 0px; } diff --git a/tournaments/templates/profile.html b/tournaments/templates/profile.html index 2e6a1a7..93e8963 100644 --- a/tournaments/templates/profile.html +++ b/tournaments/templates/profile.html @@ -21,7 +21,7 @@ {% load tz %} {% if form.errors or password_change_form.errors %} -
+
{% for field in form %} @@ -45,7 +45,7 @@
{% endif %} -
+
@@ -55,7 +55,7 @@
-
+
diff --git a/tournaments/templates/register_tournament.html b/tournaments/templates/register_tournament.html index 95a1212..66c4dd7 100644 --- a/tournaments/templates/register_tournament.html +++ b/tournaments/templates/register_tournament.html @@ -14,8 +14,8 @@
-
-

Inscription : {{ tournament.display_name }} {{ tournament.get_federal_age_category_display}}

+
+

Inscription : {{ tournament.display_name }} {{ tournament.get_federal_age_category_display}}

diff --git a/tournaments/templates/registration/activation_failed.html b/tournaments/templates/registration/activation_failed.html index dfa42e6..35e156a 100644 --- a/tournaments/templates/registration/activation_failed.html +++ b/tournaments/templates/registration/activation_failed.html @@ -9,7 +9,7 @@
-
+

Le lien d'activation est invalide ou a expiré.

diff --git a/tournaments/templates/registration/activation_success.html b/tournaments/templates/registration/activation_success.html index 6e17e01..3fdd7d3 100644 --- a/tournaments/templates/registration/activation_success.html +++ b/tournaments/templates/registration/activation_success.html @@ -9,7 +9,7 @@
-
+

Votre compte a été activé et vous êtes maintenant connecté.

Aller à la page d'accueil diff --git a/tournaments/templates/registration/login.html b/tournaments/templates/registration/login.html index 8b8359f..2188b41 100644 --- a/tournaments/templates/registration/login.html +++ b/tournaments/templates/registration/login.html @@ -10,7 +10,7 @@
-
+
{% if form.non_field_errors %}
{% if form.non_field_errors %} diff --git a/tournaments/templates/registration/my_tournaments.html b/tournaments/templates/registration/my_tournaments.html index 3d117cd..eee8c04 100644 --- a/tournaments/templates/registration/my_tournaments.html +++ b/tournaments/templates/registration/my_tournaments.html @@ -11,7 +11,7 @@ {% load tz %}
-
+
{% if running_tournaments %} @@ -37,7 +37,7 @@
-
+
{% if ended_tournaments %} diff --git a/tournaments/templates/registration/password_reset_complete.html b/tournaments/templates/registration/password_reset_complete.html index af25e0d..e48b6f0 100644 --- a/tournaments/templates/registration/password_reset_complete.html +++ b/tournaments/templates/registration/password_reset_complete.html @@ -6,7 +6,7 @@ {% block content %}
-
+

Votre mot de passe a été réinitialisé avec succès. Vous pouvez maintenant vous connecter avec votre nouveau mot de passe.

diff --git a/tournaments/templates/registration/password_reset_confirm.html b/tournaments/templates/registration/password_reset_confirm.html index ce73131..089e4ee 100644 --- a/tournaments/templates/registration/password_reset_confirm.html +++ b/tournaments/templates/registration/password_reset_confirm.html @@ -6,7 +6,7 @@ {% block content %}
-
+
{% if form.non_field_errors %}
{% for error in form.non_field_errors %} diff --git a/tournaments/templates/registration/password_reset_done.html b/tournaments/templates/registration/password_reset_done.html index 28f2b9f..4b3182e 100644 --- a/tournaments/templates/registration/password_reset_done.html +++ b/tournaments/templates/registration/password_reset_done.html @@ -6,7 +6,7 @@ {% block content %}
-
+

Un e-mail contenant un lien pour réinitialiser votre mot de passe a été envoyé à votre adresse. Veuillez vérifier votre boîte de réception. diff --git a/tournaments/templates/registration/password_reset_form.html b/tournaments/templates/registration/password_reset_form.html index cd0e3d7..26ac9a7 100644 --- a/tournaments/templates/registration/password_reset_form.html +++ b/tournaments/templates/registration/password_reset_form.html @@ -6,7 +6,7 @@ {% block content %}

-
+
{% if form.non_field_errors %}
diff --git a/tournaments/templates/registration/signup.html b/tournaments/templates/registration/signup.html index 26b3b02..a77ba65 100644 --- a/tournaments/templates/registration/signup.html +++ b/tournaments/templates/registration/signup.html @@ -10,7 +10,7 @@
{% if form.errors %} -
+
{% for field in form %} @@ -25,7 +25,7 @@
{% endif %} -
+
{% if form.non_field_errors %}
diff --git a/tournaments/templates/registration/signup_success.html b/tournaments/templates/registration/signup_success.html index e783bfc..1357f90 100644 --- a/tournaments/templates/registration/signup_success.html +++ b/tournaments/templates/registration/signup_success.html @@ -11,7 +11,7 @@
-
+

Un e-mail de confirmation a été envoyé à :
{{ user_email }}

diff --git a/tournaments/templates/tournaments/admin/mail_test.html b/tournaments/templates/tournaments/admin/mail_test.html index e9be1d2..35804a2 100644 --- a/tournaments/templates/tournaments/admin/mail_test.html +++ b/tournaments/templates/tournaments/admin/mail_test.html @@ -11,7 +11,7 @@
-
+
diff --git a/tournaments/templates/tournaments/base.html b/tournaments/templates/tournaments/base.html index fd01e70..2cba4dc 100644 --- a/tournaments/templates/tournaments/base.html +++ b/tournaments/templates/tournaments/base.html @@ -47,7 +47,7 @@
-
+
-