agenda_culturel/src/scripts/create_categories.py
2024-11-01 23:09:20 +01:00

28 lines
614 B
Python

from agenda_culturel.models import Category
def run():
# concert, théâtre, jeune public, danse, arts du spectacle, exposition
# conférence, nature,
# divers
categories = [
("Théâtre"),
("Concert"),
("Danse"),
("Arts du spectacle"),
("Jeune public"),
("Exposition"),
("Conférence"),
("Nature"),
("Autre"),
]
if len(Category.objects.all()) <= 1:
print("On créée des catégories")
for c in categories:
cat = Category(
name=c[0]
)
cat.save()