mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-27 00:04:43 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
import os
|
|
|
|
from .base import *
|
|
|
|
LOCALE_PATHS = [
|
|
os.path.abspath(os.path.join(BASE_DIR, "fobi_locale")),
|
|
os.path.abspath(os.path.join(BASE_DIR, "locale")),
|
|
]
|
|
FOBI_SORT_PLUGINS_BY_VALUE = True
|