1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 22:07:09 +00:00
plateforme-tfjm2/participation/migrations/0005_alter_team_options.py
Emmy D'Anello b3c26b8c1c
Improve admin interface
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:55 +02:00

21 lines
483 B
Python

# Generated by Django 4.1.7 on 2023-04-03 17:12
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("participation", "0004_alter_pool_options_pool_letter"),
]
operations = [
migrations.AlterModelOptions(
name="team",
options={
"ordering": ("trigram",),
"verbose_name": "team",
"verbose_name_plural": "teams",
},
),
]