From 429903bedff58d8a954d06a29b771d7b90c1c0c7 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 13 May 2022 08:15:48 +0200 Subject: [PATCH] Fix english label --- scratch_show/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scratch_show/models.py b/scratch_show/models.py index 892ee36..c408301 100644 --- a/scratch_show/models.py +++ b/scratch_show/models.py @@ -13,7 +13,7 @@ class Event(models.Model): class ScratchProject(models.Model): name = models.CharField('Nom du projet', max_length=128) author_name = models.CharField('Auteur', max_length=128) - project_url = models.URLField('Scratch project url', validators=[RegexValidator(regex=r'https?://scratch\.mit\.edu/projects/([0-9]+)/?')]) + project_url = models.URLField('Lien (url) du projet Scratch', validators=[RegexValidator(regex=r'https?://scratch\.mit\.edu/projects/([0-9]+)/?')]) event = models.ForeignKey(Event, on_delete=models.CASCADE) def get_absolute_url(self):