Skip to content
Snippets Groups Projects
Commit 3f8e4d4f authored by Dorian Lesbre's avatar Dorian Lesbre
Browse files

Extend character length on activity description

parent 7c23d495
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.0.8 on 2021-04-24 13:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('home', '0003_auto_20210407_1420'),
]
operations = [
migrations.AlterField(
model_name='interludesactivity',
name='description',
field=models.TextField(help_text='Texte ou html selon la valeur de "Description HTML".\n', max_length=10000, verbose_name='description'),
),
]
......@@ -52,7 +52,7 @@ class InterludesActivity(models.Model):
host_name = models.CharField("nom de l'organisateur", max_length=50)
host_email = models.EmailField("email de l'organisateur")
description = models.TextField(
"description", max_length=2000,
"description", max_length=10000,
help_text='Texte ou html selon la valeur de "Description HTML".\n'
)
desc_as_html = models.BooleanField("Description au format HTML", default=False,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment