orbit-basic/app/views/admin/designs/_tab_form.html.erb

8 lines
447 B
Plaintext
Raw Normal View History

2012-10-24 10:40:38 +00:00
<%= form_for :file, :url => update_file_admin_design_path(:type => type, :object_id => object.id), :remote => true, :method => :post do |f| %>
<div id='post-body-content'>
2013-10-18 11:09:04 +00:00
<%= f.text_area :content, :class => 'code middle', :value => object.file.read.force_encoding('UTF-8'), :name=>"html_code"%>
2012-10-24 10:40:38 +00:00
</div>
<div class="form-actions form-fixed pagination-right">
<button class="btn btn-primary"><%= t(:save) %></button>
</div>
<% end %>