Sha256: c91f73f69a1667ff5a1156629e26178d2dcdf190472f18ba840715748940a207

Contents?: true

Size: 1.64 KB

Versions: 23

Compression:

Stored size: 1.64 KB

Contents

<h1>Edit Block Type Category</h1>

<p><div id='blocktypecategory_<%= @btc.id %>_name' ></div></p>
<p><div id='blocktypecategory_<%= @btc.id %>_parent_id' ></div></p>
<p><div id='blocktypecategory_<%= @btc.id %>_sort_order' ></div></p>
<p><div id='blocktypecategory_<%= @btc.id %>_show_in_sidebar' ></div></p>

<h5>Blocks</h5>
<ul>
<% Caboose::BlockType.where(:block_type_category_id => @btc.id).order(:id).all.each do |bt| %>
<li><a href="/admin/block-types/<%= bt.id %>"><%= bt.description %></a></li>
<% end %>
</ul>
<br />

<a href="/admin/block-type-categories" class="caboose-btn">< Back</a>

<% content_for :caboose_css do %>
<style type='text/css'>

</style>
<% end %>
<% content_for :caboose_js do %>
<%= javascript_include_tag "caboose/model/all" %>
<script type="text/javascript">

$(document).ready(function() {
  new ModelBinder({
    name: 'BlockTypeCategory',
    id: <%= @btc.id %>,
    update_url: '/admin/block-type-categories/<%= @btc.id %>',
    authenticity_token: '<%= form_authenticity_token %>',
    attributes: [
      { name: 'name' , nice_name: 'Name', type: 'text'     , value: <%= raw Caboose.json(@btc.name) %>, width: 400 },
      { name: 'parent_id' , nice_name: 'Parent', type: 'select'     , value: <%= raw Caboose.json(@btc.parent_id) %>, options_url: '/admin/block-type-categories/tree-options', width: 400 },
      { name: 'sort_order' , nice_name: 'Sort Order', type: 'text'     , value: <%= raw Caboose.json(@btc.sort_order) %>, width: 400 },
      { name: 'show_in_sidebar' , nice_name: 'Show in Sidebar', type: 'checkbox'     , value: <%= raw Caboose.json(@btc.show_in_sidebar) %>, width: 400 }
    ]    
  });  
});

</script>
<% end %>

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
caboose-cms-0.9.229 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-1.0.2 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-1.0.1 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.228 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.227 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.226 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.225 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.224 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.223 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.222 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.221 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.220 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.219 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.218 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.217 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.216 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.215 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.214 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.213 app/views/caboose/block_type_categories/admin_edit.html.erb
caboose-cms-0.9.212 app/views/caboose/block_type_categories/admin_edit.html.erb