Un lieu peut être blank

This commit is contained in:
Jean-Marie Favreau 2024-05-01 15:27:31 +02:00
parent 22c895b3a2
commit 0de957cf8e
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 4.2.7 on 2024-05-01 13:27
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('agenda_culturel', '0062_alter_duplicatedevents_options_and_more'),
]
operations = [
migrations.AlterField(
model_name='event',
name='exact_location',
field=models.ForeignKey(blank=True, help_text='Address of the event', null=True, on_delete=django.db.models.deletion.SET_NULL, to='agenda_culturel.place', verbose_name='Location'),
),
]

View File

@ -266,7 +266,7 @@ class Event(models.Model):
recurrences = recurrence.fields.RecurrenceField(verbose_name=_("Recurrence"), include_dtstart=False, blank=True, null=True)
exact_location = models.ForeignKey(Place, verbose_name=_('Location'), help_text=_('Address of the event'), null=True, on_delete=models.SET_NULL)
exact_location = models.ForeignKey(Place, verbose_name=_('Location'), help_text=_('Address of the event'), null=True, on_delete=models.SET_NULL, blank=True)
location = models.CharField(verbose_name=_('Location (free form)'), help_text=_('Address of the event in case its not available in the already known places (free form)'), max_length=512, default="")
description = models.TextField(verbose_name=_('Description'), help_text=_('General description of the event'), blank=True, null=True)