diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-12 04:04:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 04:04:08 +0200 |
commit | 9d4541c612b506889675c4c19ced5cd17ad3710f (patch) | |
tree | 1b2944fe0ae4f40e68701d5c3b27753c4bc16b5b /app/views/admin | |
parent | 22de24b8ca707d8eac26eab6615377a290ff1f4e (diff) |
Display customized mascot in web UI and fix admin form for it (#8964)
Follow-up to #8766
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/settings/edit.html.haml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml index f3f9bdaf0..04b1a6754 100644 --- a/app/views/admin/settings/edit.html.haml +++ b/app/views/admin/settings/edit.html.haml @@ -26,6 +26,8 @@ = f.input :thumbnail, as: :file, wrapper: :with_block_label, label: t('admin.settings.thumbnail.title'), hint: t('admin.settings.thumbnail.desc_html') .fields-row__column.fields-row__column-6.fields-group = f.input :hero, as: :file, wrapper: :with_block_label, label: t('admin.settings.hero.title'), hint: t('admin.settings.hero.desc_html') + + .fields-row .fields-row__column.fields-row__column-6.fields-group = f.input :mascot, as: :file, wrapper: :with_block_label, label: t('admin.settings.mascot.title'), hint: t('admin.settings.mascot.desc_html') |