diff --git a/apps/participation/migrations/0001_initial.py b/apps/participation/migrations/0001_initial.py
index 8807016..5f13c35 100644
--- a/apps/participation/migrations/0001_initial.py
+++ b/apps/participation/migrations/0001_initial.py
@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
name='Participation',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('valid', models.BooleanField(default=None, help_text='The video got the validation of the administrators.', null=True, verbose_name='valid')),
+ ('valid', models.BooleanField(default=None, help_text='The participation got the validation of the organizers.', null=True, verbose_name='valid')),
],
options={
'verbose_name': 'participation',
diff --git a/apps/participation/models.py b/apps/participation/models.py
index c405c3d..2bb65de 100644
--- a/apps/participation/models.py
+++ b/apps/participation/models.py
@@ -256,7 +256,7 @@ class Participation(models.Model):
null=True,
default=None,
verbose_name=_("valid"),
- help_text=_("The video got the validation of the administrators."),
+ help_text=_("The participation got the validation of the organizers."),
)
def get_absolute_url(self):
diff --git a/apps/participation/templates/participation/team_detail.html b/apps/participation/templates/participation/team_detail.html
index ba808c5..f7cba26 100644
--- a/apps/participation/templates/participation/team_detail.html
+++ b/apps/participation/templates/participation/team_detail.html
@@ -76,7 +76,7 @@
{% if user.registration.participates %}
{% if can_validate %}
- {% trans "Your team has at least 4 members and a coach and all photo authorizations were given: the team can be validated." %}
+ {% trans "Your team has at least 4 members and a coach and all authorizations were given: the team can be validated." %}
{% else %}
- {% trans "Your team must be composed of 4 members and a coach and each member must upload its photo authorization and confirm its email address." %}
+ {% trans "Your team must be composed of 4 members and a coach and each member must upload their authorizations and confirm its email address." %}
{% endif %}
{% else %}
diff --git a/apps/participation/views.py b/apps/participation/views.py
index fd6e5f8..325d552 100644
--- a/apps/participation/views.py
+++ b/apps/participation/views.py
@@ -169,7 +169,7 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView)
context["title"] = _("Detail of team {trigram}").format(trigram=self.object.trigram)
context["request_validation_form"] = RequestValidationForm(self.request.POST or None)
context["validation_form"] = ValidateParticipationForm(self.request.POST or None)
- # A team is complete when there are at least 4 members plus a coache that have sent their photo authorization,
+ # A team is complete when there are at least 4 members plus a coache that have sent their authorizations,
# their health sheet, they confirmed their email address and under-18 people sent their parental authorization.
context["can_validate"] = team.students.count() >= 4 and team.coachs.exists() and \
all(r.email_confirmed for r in team.students.all()) and \
@@ -206,7 +206,7 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView)
return self.form_invalid(form)
if not self.get_context_data()["can_validate"]:
form.add_error(None, _("The team can't be validated: missing email address confirmations, "
- "photo authorizations, people or the chosen problem is not set."))
+ "authorizations, people or the chosen problem is not set."))
return self.form_invalid(form)
self.object.participation.valid = False
diff --git a/apps/registration/templates/registration/mails/email_validation_email.html b/apps/registration/templates/registration/mails/email_validation_email.html
index 416c496..d625716 100644
--- a/apps/registration/templates/registration/mails/email_validation_email.html
+++ b/apps/registration/templates/registration/mails/email_validation_email.html
@@ -32,5 +32,5 @@
--
- {% trans "The Correspondances team." %}
+ {% trans "The TFJM² team." %}
diff --git a/apps/registration/templates/registration/mails/email_validation_email.txt b/apps/registration/templates/registration/mails/email_validation_email.txt
index e9219c4..07a09e1 100644
--- a/apps/registration/templates/registration/mails/email_validation_email.txt
+++ b/apps/registration/templates/registration/mails/email_validation_email.txt
@@ -10,4 +10,4 @@ https://{{ domain }}{% url 'registration:email_validation' uidb64=uid token=toke
{% trans "Thanks" %},
-{% trans "The Correspondances team." %}
+{% trans "The TFJM² team." %}
diff --git a/apps/registration/templates/registration/upload_parental_authorization.html b/apps/registration/templates/registration/upload_parental_authorization.html
index 6bf65f0..e49c489 100644
--- a/apps/registration/templates/registration/upload_parental_authorization.html
+++ b/apps/registration/templates/registration/upload_parental_authorization.html
@@ -8,7 +8,7 @@