Fix english label
This commit is contained in:
parent
c924918387
commit
429903bedf
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue