--- /dev/null
+# Generated by Django 3.2.3 on 2023-08-21 10:56
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('teleforma', '0016_conference_animation_text'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='conference',
+ name='permanent',
+ field=models.BooleanField(default=False, verbose_name='Permanent'),
+ ),
+ ]
comment = ShortTextField(_('comment'), max_length=255, blank=True)
date_begin = models.DateTimeField(_('begin date'), null=True, blank=True)
date_end = models.DateTimeField(_('end date'), null=True, blank=True)
+ permanent = models.BooleanField('Permanent', default=False, help_text="Sur la fiche conférence, s'affichera \"Selon vos disponibilités\" à la place de la date.")
duration = DurationField(_('approximative duration'))
price = models.FloatField(_('price'), blank=True, null=True)
approved = models.BooleanField(_('approved'), default=True)