mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
259467f646
Adds instructions to match Desktop logo field. https://community.openproject.org/work_packages/69905
81 lines
3.4 KiB
Plaintext
81 lines
3.4 KiB
Plaintext
<%#-- copyright
|
|
OpenProject is an open source project management software.
|
|
Copyright (C) the OpenProject GmbH
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 3.
|
|
|
|
OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
Copyright (C) 2010-2013 the ChiliProject Team
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
See COPYRIGHT and LICENSE files for more details.
|
|
|
|
++#%>
|
|
|
|
<%= render partial: "custom_styles/uploads/image", locals: { image:{
|
|
field: :logo,
|
|
label: I18n.t(:label_custom_logo),
|
|
present: @custom_style.id && @custom_style.logo.present?,
|
|
source: @custom_style.id && @custom_style.logo.present? ?
|
|
custom_style_logo_path(digest: @custom_style.digest, filename: @custom_style.logo_identifier) :
|
|
nil,
|
|
img_class: "custom-logo-preview",
|
|
accept: "image/*",
|
|
delete_path: custom_style_logo_delete_path,
|
|
instructions: I18n.t("text_custom_logo_instructions")
|
|
} } %>
|
|
|
|
<%= render partial: "custom_styles/uploads/image", locals: { image: {
|
|
field: :logo_mobile,
|
|
label: I18n.t(:label_custom_logo_mobile),
|
|
present: @custom_style.id && @custom_style.logo_mobile.present?,
|
|
source: @custom_style.id && @custom_style.logo_mobile.present? ?
|
|
custom_style_logo_mobile_path(digest: @custom_style.digest, filename: @custom_style.logo_mobile_identifier) :
|
|
nil,
|
|
img_class: "custom-logo-mobile-preview",
|
|
accept: "image/*",
|
|
delete_path: custom_style_logo_mobile_delete_path,
|
|
instructions: I18n.t("text_custom_logo_mobile_instructions")
|
|
} } %>
|
|
|
|
<%= render partial: "custom_styles/uploads/image", locals: { image:{
|
|
field: :favicon,
|
|
label: I18n.t(:label_custom_favicon),
|
|
present: @custom_style.id && @custom_style.favicon.present?,
|
|
source: @custom_style.id && @custom_style.favicon.present? ?
|
|
custom_style_favicon_path(digest: @custom_style.digest, filename: @custom_style.favicon_identifier) :
|
|
nil,
|
|
img_class: "custom-favicon-preview",
|
|
accept: "image/*",
|
|
delete_path: custom_style_favicon_delete_path,
|
|
instructions: I18n.t("text_custom_favicon_instructions")
|
|
} } %>
|
|
|
|
<%= render partial: "custom_styles/uploads/image", locals: { image:{
|
|
field: :favicon,
|
|
label: I18n.t(:label_custom_touch_icon),
|
|
present: @custom_style.id && @custom_style.touch_icon.present?,
|
|
source: @custom_style.id && @custom_style.touch_icon.present? ?
|
|
custom_style_touch_icon_path(digest: @custom_style.digest, filename: @custom_style.touch_icon_identifier) :
|
|
nil,
|
|
img_class: "custom-touch-icon-preview",
|
|
accept: "image/*",
|
|
delete_path: custom_style_touch_icon_delete_path,
|
|
instructions: I18n.t("text_custom_touch_icon_instructions")
|
|
} } %>
|