kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.7 KiB
69 lines
2.7 KiB
8 years ago
|
<%#-- copyright
|
||
|
OpenProject is a project management system.
|
||
|
Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||
|
|
||
|
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 doc/COPYRIGHT.rdoc for more details.
|
||
|
|
||
|
++#%>
|
||
|
|
||
|
<% html_title t(:label_administration), t(:label_custom_style) %>
|
||
|
|
||
|
<%= toolbar title: t(:label_custom_style) %>
|
||
|
|
||
|
<%= error_messages_for 'custom_style' %>
|
||
|
|
||
|
<%= form_for @custom_style, url: custom_style_path, html: { multipart: true, class: "form -vertical" } do |f| %>
|
||
|
<section class="form--section">
|
||
|
<fieldset class="form--fieldset">
|
||
|
<legend class="form--fieldset-legend"><%= I18n.t(:label_custom_logo) %></legend>
|
||
|
|
||
|
<% if @custom_style.id && @custom_style.logo.present? %>
|
||
|
<div>
|
||
|
<%= image_tag(custom_style_logo_path(digest: @custom_style.digest, filename: @custom_style.logo_identifier), class: 'custom-logo-preview') %>
|
||
|
<%= link_to l(:button_delete),
|
||
|
custom_style_logo_delete_path,
|
||
|
method: :delete,
|
||
|
class: 'icon icon-delete confirm-form-submit' %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="grid-block">
|
||
|
<div class="form--field -required">
|
||
|
<div class="attachment_field form--field-container -vertical -shrink">
|
||
|
<div class="form--file-container">
|
||
|
<%= f.file_field :logo, required: true, class: "attachment_choose_file", size: "15" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
For best results make sure your image's dimensions are 230 by 55px.
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<%= styled_button_tag l(@custom_style.logo.present? ? :button_replace : :button_upload), class: "button -alt-highlight #{@custom_style.logo.blank? ? '-with-icon icon-add' : ''}" %>
|
||
|
|
||
|
</fieldset>
|
||
|
</section>
|
||
|
<% end %>
|