readwriteweb
Jaap Joris Vens 2020-02-15 07:51:00 +01:00
rodzic a7a640a721
commit 7c0eb51c75
4 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -317,6 +317,7 @@ form.cms {
div.label {
font-size: 0.8rem;
font-weight: 400;
text-align: left;
}
div.input {

Wyświetl plik

@ -228,7 +228,8 @@ form.cms div.formfield.required input, form.cms div.formfield.required select, f
form.cms div.label {
font-size: 0.8rem;
font-weight: 400; }
font-weight: 400;
text-align: left; }
form.cms div.input {
overflow: hidden;

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -22,7 +22,10 @@ STATIC_ROOT = '/srv/' + PROJECT_NAME + '/static'
MEDIA_URL = '/media/'
MEDIA_ROOT = '/srv/' + PROJECT_NAME + '/media'
LOGIN_REDIRECT_URL = '/'
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']
def read(file):