agenda_culturel/src/scripts/create_slug_categories.py
2025-01-25 18:58:07 +01:00

11 lines
229 B
Python

from agenda_culturel.models import Category
def run():
# concert, théâtre, jeune public, danse, arts du spectacle, exposition
# conférence, nature,
# divers
for c in Category.objects.all():
c.save()