kopia lustrzana https://github.com/rtts/django-simplecms
minor
rodzic
a7a640a721
commit
7c0eb51c75
|
@ -317,6 +317,7 @@ form.cms {
|
||||||
div.label {
|
div.label {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.input {
|
div.input {
|
||||||
|
|
|
@ -228,7 +228,8 @@ form.cms div.formfield.required input, form.cms div.formfield.required select, f
|
||||||
|
|
||||||
form.cms div.label {
|
form.cms div.label {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: 400; }
|
font-weight: 400;
|
||||||
|
text-align: left; }
|
||||||
|
|
||||||
form.cms div.input {
|
form.cms div.input {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -22,7 +22,10 @@ STATIC_ROOT = '/srv/' + PROJECT_NAME + '/static'
|
||||||
MEDIA_URL = '/media/'
|
MEDIA_URL = '/media/'
|
||||||
MEDIA_ROOT = '/srv/' + PROJECT_NAME + '/media'
|
MEDIA_ROOT = '/srv/' + PROJECT_NAME + '/media'
|
||||||
LOGIN_REDIRECT_URL = '/'
|
LOGIN_REDIRECT_URL = '/'
|
||||||
|
|
||||||
CMS_SECTION_MODEL = 'app.Section'
|
CMS_SECTION_MODEL = 'app.Section'
|
||||||
|
# CMS_PAGE_MODEL = 'app.Page' # https://github.com/wq/django-swappable-models/issues/18#issuecomment-514039164
|
||||||
|
|
||||||
MARKDOWN_EXTENSIONS = ['extra', 'smarty']
|
MARKDOWN_EXTENSIONS = ['extra', 'smarty']
|
||||||
|
|
||||||
def read(file):
|
def read(file):
|
||||||
|
|
Ładowanie…
Reference in New Issue