34 lines
1 KiB
Python
34 lines
1 KiB
Python
# Generated by Django 2.2.17 on 2021-03-31 20:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("gestion", "0003_photo"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="photo",
|
|
name="cat",
|
|
field=models.CharField(
|
|
choices=[
|
|
("home_join", "Rejoignez nous"),
|
|
("home_contact", "Nous Contacter"),
|
|
("home_rep", "Répertoire de l'acceuil"),
|
|
("login", "Connexion"),
|
|
("change_membre", "Modification du profil"),
|
|
("inscription_membre", "Inscription"),
|
|
("home", "Calendrier connecté"),
|
|
("liste", "Agenda public"),
|
|
("part", "Répertoire"),
|
|
("instru", "Instruments"),
|
|
("n", "N'apparait pas"),
|
|
],
|
|
default="n",
|
|
max_length=127,
|
|
),
|
|
),
|
|
]
|