1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-05 07:54:08 +02:00

Try to add CI

This commit is contained in:
Yohann D'ANELLO
2020-09-24 11:44:43 +02:00
parent f0459838d4
commit a68a7b681d
14 changed files with 72 additions and 20 deletions

View File

@ -2,7 +2,6 @@ from django.core.validators import RegexValidator
from django.db import models
from django.db.models import Index
from django.utils.crypto import get_random_string
from django.utils.functional import lazy
from django.utils.text import format_lazy
from django.utils.translation import gettext_lazy as _
@ -120,7 +119,7 @@ class Video(models.Model):
def __str__(self):
return _("Video of team {name} ({trigram})")\
.format(name=self.participation.team.name, trigram = self.participation.team.trigram)
.format(name=self.participation.team.name, trigram=self.participation.team.trigram)
class Meta:
verbose_name = _("video")