1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-22 17:58:26 +02:00

Support penalties

This commit is contained in:
2021-04-03 21:59:06 +02:00
parent d093414ec7
commit 0576f3e32b
4 changed files with 143 additions and 99 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.1.7 on 2021-04-03 19:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('participation', '0003_tournament_remote'),
]
operations = [
migrations.AddField(
model_name='passage',
name='defender_penalties',
field=models.PositiveSmallIntegerField(default=0, help_text='Number of penalties for the defender. The defender will loose a 0.5 coefficient per penalty.', verbose_name='penalties'),
),
]