diff options
Diffstat (limited to 'chimere/migrations/0018_auto_20180717_1204.py')
-rw-r--r-- | chimere/migrations/0018_auto_20180717_1204.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/chimere/migrations/0018_auto_20180717_1204.py b/chimere/migrations/0018_auto_20180717_1204.py new file mode 100644 index 0000000..ff21cbb --- /dev/null +++ b/chimere/migrations/0018_auto_20180717_1204.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2018-07-17 12:04 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('chimere', '0017_auto_20180318_1958'), + ] + + operations = [ + migrations.AddField( + model_name='area', + name='single_click_map', + field=models.BooleanField(default=False, verbose_name='Mobile - Hide categories after click'), + ), + migrations.AlterField( + model_name='page', + name='content', + field=models.TextField(blank=True, help_text='Content of the page (do not fill external link if you want to display this content)', null=True, verbose_name='Content'), + ), + migrations.AlterField( + model_name='page', + name='image', + field=models.ImageField(blank=True, help_text='If an image is provided, this image replace the title on the menu', null=True, upload_to='maps', verbose_name='Image'), + ), + migrations.AlterField( + model_name='page', + name='url', + field=models.URLField(blank=True, help_text='Target to an external link (do not fill content if you want to point to this external link)', null=True, verbose_name='Url'), + ), + migrations.AlterField( + model_name='subcategory', + name='simplify_tolerance', + field=models.FloatField(blank=True, help_text='Only relevant when Minimum zoom is set. Use the Douglas-Peucker algorythm to simplify the geometry when details is not available. Adjust to your data volume and your performance need. 0.0003 is a good starting point. Note: topology is not preserved.', null=True, verbose_name='Simplify tolerance for lower zoom'), + ), + ] |