Files
postgres-web/dep/django-selectable/selectable/models.py
Magnus Hagander a6d3b44038 Import django-selectable
This will also be used to do /admin/ autocompletes.
2016-06-23 17:59:45 +02:00

11 lines
292 B
Python

from __future__ import unicode_literals
from django.conf import settings
# Set default settings
if not hasattr(settings, 'SELECTABLE_MAX_LIMIT'):
settings.SELECTABLE_MAX_LIMIT = 25
if not hasattr(settings, 'SELECTABLE_ESCAPED_KEYS'):
settings.SELECTABLE_ESCAPED_KEYS = ('label', )