added colors
This commit is contained in:
BIN
saburly/__pycache__/custom_editor.cpython-310.pyc
Normal file
BIN
saburly/__pycache__/custom_editor.cpython-310.pyc
Normal file
Binary file not shown.
8
saburly/custom_editor.py
Normal file
8
saburly/custom_editor.py
Normal file
@@ -0,0 +1,8 @@
|
||||
FULL_EDITOR = [
|
||||
'bold', 'italic', 'h2', 'h3', 'h4',
|
||||
'ol', 'ul',
|
||||
'hr',
|
||||
'embed', 'link', 'image',
|
||||
'black', 'saburly-blue',
|
||||
'left', 'center', 'right'
|
||||
]
|
||||
Binary file not shown.
@@ -11,4 +11,9 @@ ALLOWED_HOSTS = ["*"]
|
||||
|
||||
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(BASE_DIR, 'static'),
|
||||
]
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
|
||||
|
||||
@@ -18,6 +18,10 @@ DATABASES = {
|
||||
}
|
||||
}
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(BASE_DIR, 'static'),
|
||||
]
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user