mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-02 13:20:24 +00:00
15 lines
310 B
Python
15 lines
310 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appconf import AppConf
|
|
from django.conf import settings # NOQA
|
|
|
|
__all__ = ('settings',)
|
|
|
|
|
|
class Select2Conf(AppConf):
|
|
CACHE_BACKEND = 'default'
|
|
CACHE_PREFIX = 'select2_'
|
|
|
|
class Meta:
|
|
prefix = 'SELECT2'
|