OpenProject is the leading open source project management software.
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.
openproject/app/views/my_projects_overviews/_block_textilizable.html.erb

65 lines
2.4 KiB

<%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2013 the OpenProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
See doc/COPYRIGHT.rdoc for more details.
++#%>
<div id="block_<%= block_name.dasherize %>" class="mypage-box">
<div class="box-actions">
<%= link_to_remote l(:button_delete), {
:confirm => l(:label_confirm_delete),
:url => { :action => "remove_block", :block => block_name },
:complete => "removeBlock('block_#{block_name.dasherize}')" },
:class => "icon icon-del"
%>
</div>
<div class="handle">
<div id="<%= block_name %>-form-div" style="display: none;">
<div class="box-actions">
<a href="#" onclick="return saveTextilizable('<%= block_name %>');"
class="icon icon-save"><%= l(:button_save) %></a>
</div>
<div class="box-actions">
<a href="#" onclick="return resetTextilizable('<%= block_name %>');"
class="icon icon-cancel"><%= l(:button_cancel) %></a>
</div>
<div style="clear: right;"></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}" %>
<%= submit_tag l(:button_save),
:id => "#{block_name}-form-submit", :style => "display:none;" %>
<p><label><%=l(:label_attachment_plural)%></label><br />
<%= render :partial => 'attachments/form' %>
</p>
<% end %>
</div>
<div id="<%= block_name %>-preview-div" class="wiki">
<div class="box-actions">
<a href="#" onclick="return editTextilizable('<%= block_name %>');"
class="icon icon-edit"><%= l(:button_edit) %></a>
</div>
<%= render :partial => "textilizable",
:locals => { :block_title => block_title,
:textile => textile }
%>
</div>
</div>
</div>