1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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'),
),
]
|