This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
74 changed files
with
467 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
geocity/apps/accounts/migrations/0012_alter_administrativeentity_sites.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.1.7 on 2023-04-05 07:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("sites", "0002_alter_domain_unique"), | ||
("accounts", "0011_add_signature_sheet_to_administrative_entity"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="administrativeentity", | ||
name="sites", | ||
field=models.ManyToManyField( | ||
related_name="administrative_entity", | ||
to="sites.site", | ||
verbose_name="Détails du Site", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
geocity/apps/accounts/templates/registration/emails/email_confirmation.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{% load i18n %} | ||
{% autoescape off %} | ||
{% blocktrans %}Bonjour {{ user }}{% endblocktrans %}, | ||
{% blocktranslate %}Bonjour {{ user }}{% endblocktranslate %}, | ||
|
||
{% trans "Nous devons simplement vérifier votre adresse e-mail avant que vous puissiez accéder à Geocity." %} | ||
{% translate "Nous devons simplement vérifier votre adresse e-mail avant que vous puissiez accéder à Geocity." %} | ||
|
||
{% trans "Vérifiez votre adresse e-mail: " %}https://{{ domain }}{{ url }} | ||
{% translate "Vérifiez votre adresse e-mail: " %}https://{{ domain }}{{ url }} | ||
|
||
{% trans "Avec nos meilleures salutations," %} | ||
{% translate "Avec nos meilleures salutations," %} | ||
{{ signature }} | ||
|
||
{% trans "Ceci est un e-mail automatique, veuillez ne pas y répondre." %} | ||
{% translate "Ceci est un e-mail automatique, veuillez ne pas y répondre." %} | ||
{% endautoescape %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
geocity/apps/accounts/templates/registration/password_reset_email.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{% load i18n %}{% autoescape off %} | ||
{% trans "Bonjour," %} | ||
{% translate "Bonjour," %} | ||
|
||
{% trans "Une demande de réinitialisation de mot de passe a été demandée." %} | ||
{% translate "Une demande de réinitialisation de mot de passe a été demandée." %} | ||
|
||
{% trans "Veuillez vous rendre sur cette page et choisir un nouveau mot de passe :" %} | ||
{% translate "Veuillez vous rendre sur cette page et choisir un nouveau mot de passe :" %} | ||
{% block reset_link %} | ||
{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %} | ||
{% endblock %} | ||
{% trans "Votre nom d'utilisateur, en cas d'oubli:" %} {{ user.get_username }} | ||
{% translate "Votre nom d'utilisateur, en cas d'oubli:" %} {{ user.get_username }} | ||
|
||
{% trans "Avec nos meilleures salutations," %} | ||
{% trans "L'application de gestion des demandes" %} | ||
{% translate "Avec nos meilleures salutations," %} | ||
{% translate "L'application de gestion des demandes" %} | ||
|
||
{% trans "Ceci est un e-mail automatique, veuillez ne pas y répondre." %} | ||
{% translate "Ceci est un e-mail automatique, veuillez ne pas y répondre." %} | ||
{% endautoescape %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
geocity/apps/accounts/templates/two_factor/_wizard_actions.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
{% load i18n %} | ||
|
||
<button type="submit" class="btn btn-primary">{% trans "Suivant" %}</button> | ||
<button type="submit" class="btn btn-primary">{% translate "Suivant" %}</button> | ||
{% if cancel_url %} | ||
<a href="{{ cancel_url }}" class="mt-3 ml-3">{% trans "Annuler" %}</a> | ||
<a href="{{ cancel_url }}" class="mt-3 ml-3">{% translate "Annuler" %}</a> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.