mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
14 lines
332 B
Python
14 lines
332 B
Python
from .base import *
|
|
|
|
FOBI_DEFAULT_THEME = 'foundation5'
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
INSTALLED_APPS.append(
|
|
'fobi.contrib.themes.foundation5.widgets.form_elements.'
|
|
'date_foundation5_widget'
|
|
)
|
|
INSTALLED_APPS.append(
|
|
'fobi.contrib.themes.foundation5.widgets.form_elements.'
|
|
'datetime_foundation5_widget'
|
|
)
|