fix typo
This commit is contained in:
parent
1b04d0c06a
commit
9caaf2a8f0
2 changed files with 26 additions and 1 deletions
25
src/c3nav/mapdata/migrations/0028_auto_20161219_1757.py
Normal file
25
src/c3nav/mapdata/migrations/0028_auto_20161219_1757.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.4 on 2016-12-19 17:57
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('mapdata', '0027_auto_20161219_1748'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='arealocation',
|
||||||
|
name='routing_inclusion',
|
||||||
|
field=models.CharField(choices=[('default', 'Default, include if map package is unlocked'), ('allow_exclude', 'Included, but allow excluding'), ('allow_include', 'Excluded, but allow including'), ('needs_permission', 'Excluded, needs permission to include')], default='default', max_length=20, verbose_name='Routing Inclusion'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='locationgroup',
|
||||||
|
name='routing_inclusion',
|
||||||
|
field=models.CharField(choices=[('default', 'Default, include if map package is unlocked'), ('allow_exclude', 'Included, but allow excluding'), ('allow_include', 'Excluded, but allow including'), ('needs_permission', 'Excluded, needs permission to include')], default='default', max_length=20, verbose_name='Routing Inclusion'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -87,7 +87,7 @@ class LocationModelMixin(Location):
|
||||||
LOCATION_ROUTING_INCLUSION = (
|
LOCATION_ROUTING_INCLUSION = (
|
||||||
('default', _('Default, include if map package is unlocked')),
|
('default', _('Default, include if map package is unlocked')),
|
||||||
('allow_exclude', _('Included, but allow excluding')),
|
('allow_exclude', _('Included, but allow excluding')),
|
||||||
('allow_include', _('Excluded, but allow includinge')),
|
('allow_include', _('Excluded, but allow including')),
|
||||||
('needs_permission', _('Excluded, needs permission to include')),
|
('needs_permission', _('Excluded, needs permission to include')),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue