|
|
|
@ -20,34 +20,30 @@ See doc/COPYRIGHT.md for more details. |
|
|
|
|
++#%> |
|
|
|
|
|
|
|
|
|
<div id="block_<%= block_name.dasherize %>" class="mypage-box"> |
|
|
|
|
|
|
|
|
|
<% content_for block_name do %> |
|
|
|
|
<div class="handle"> |
|
|
|
|
<div id="<%= block_name %>-form-div" style="display: none;"> |
|
|
|
|
<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="#" onclick="return resetTextilizable('<%= block_name %>');" |
|
|
|
|
class="icon icon-cancel"><%= l(:button_cancel) %></a> |
|
|
|
|
|
|
|
|
|
<a href="#" onclick="return saveTextilizable('<%= block_name %>');" |
|
|
|
|
class="icon icon-save1"><%= l(:button_save) %></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| %> |
|
|
|
|
<%= 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}" %> |
|
|
|
|
<%= 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> |
|
|
|
|
<%= 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> |
|
|
|
|
:id => "#{block_name}-form-submit" %> |
|
|
|
|
<% end %> |
|
|
|
|
</div> |
|
|
|
|
<div id="<%= block_name %>-preview-div" class="wiki"> |
|
|
|
@ -63,11 +59,11 @@ See doc/COPYRIGHT.md for more details. |
|
|
|
|
%> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<% end %> |
|
|
|
|
<%= render :partial => "textilizable", |
|
|
|
|
:locals => { :block_title => block_title, |
|
|
|
|
:textile => textile, |
|
|
|
|
:block_name => block_name } |
|
|
|
|
%> |
|
|
|
|
<% end %> |
|
|
|
|
<%= render :partial => "textilizable", |
|
|
|
|
:locals => { :block_title => block_title, |
|
|
|
|
:textile => textile, |
|
|
|
|
:block_name => block_name } |
|
|
|
|
%> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|