mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-06-29 19:51:08 +02:00
Add shortcut and order
This commit is contained in:
29
media/migrations/0022_auto_20190811_1804.py
Normal file
29
media/migrations/0022_auto_20190811_1804.py
Normal file
@ -0,0 +1,29 @@
|
||||
# Generated by Django 2.2.4 on 2019-08-11 16:04
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('media', '0021_auto_20190811_1047'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='auteur',
|
||||
options={'ordering': ['nom'], 'verbose_name': 'author', 'verbose_name_plural': 'authors'},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='emprunt',
|
||||
options={'ordering': ['-date_emprunt'], 'verbose_name': 'borrowed item', 'verbose_name_plural': 'borrowed items'},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='jeu',
|
||||
options={'ordering': ['nom'], 'verbose_name': 'game', 'verbose_name_plural': 'games'},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='media',
|
||||
options={'ordering': ['title', 'subtitle'], 'verbose_name': 'medium', 'verbose_name_plural': 'media'},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user