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.
72 lines
2.9 KiB
72 lines
2.9 KiB
<%#-- copyright
|
|
OpenProject My Project Page Plugin
|
|
|
|
Copyright (C) 2011-2014 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.
|
|
|
|
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.md for more details.
|
|
|
|
++#%>
|
|
|
|
<div id="block_<%= block_name.dasherize %>" class="widget-box block-teaser">
|
|
<div class="handle">
|
|
<% content_for block_name do %>
|
|
<div id="<%= block_name %>-form-div" style="display: none;" ng-non-bindable>
|
|
<div class="box-actions">
|
|
<a href="#" data-block-name="<%= block_name %>"
|
|
class="icon icon-cancel reset-textilizable"
|
|
title=<%= l(:button_cancel) %>></a>
|
|
</div>
|
|
<%= form_for :overview,
|
|
url: {action: 'update_custom_element'},
|
|
html: {id: "block_form_#{block_name.dasherize}",
|
|
class:nil,
|
|
method: :put,
|
|
multipart: true} do |f| %>
|
|
|
|
<%= hidden_field_tag 'block_name', block_name %>
|
|
<%= text_field_tag "block_title_#{block_name}", block_title %>
|
|
<%= text_area_tag "textile_#{block_name}", textile, cols: 40, rows: 5, class: 'wiki-edit' %>
|
|
<%= wikitoolbar_for "textile_#{block_name}" %>
|
|
<p><label><%=l(:label_attachment_plural)%></label><br />
|
|
<%= render partial: 'attachments/form' %>
|
|
</p>
|
|
<%= styled_button_tag l(:button_save),
|
|
id: "#{block_name}-form-submit",
|
|
class: '-highlight -with-icon icon-yes' %>
|
|
<% end %>
|
|
</div>
|
|
<div id="<%= block_name %>-preview-div" class="wiki">
|
|
<div class="box-actions">
|
|
<% unless User.current.anonymous? %>
|
|
<a href="#" class="icon icon-edit edit-textilizable" data-block-name="<%= block_name %>" title="<%= l(:button_edit) %>"></a>
|
|
<% end %>
|
|
<% if User.current.allowed_to?(:remove_block, nil, global: true) %>
|
|
<%= link_to_remote '', {
|
|
confirm: l(:label_confirm_delete),
|
|
url: { action: "remove_block", block: block_name },
|
|
html: {class: "icon icon-close", title: l(:button_delete)}
|
|
}
|
|
%>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<%= render partial: "textilizable",
|
|
locals: { block_title: block_title,
|
|
textile: textile,
|
|
block_name: block_name }
|
|
%>
|
|
</div>
|
|
</div>
|
|
|