orbit-basic/app/views/admin/page_parts/_widget_data_source_categor...

14 lines
563 B
Plaintext
Raw Normal View History

2013-01-16 06:07:09 +00:00
<label class="control-label"><%= t "default_widget.data_source.category" %></label>
2013-01-14 10:49:23 +00:00
<% if @categories %>
2013-01-16 06:07:09 +00:00
<div class="well controls">
2013-01-14 10:49:23 +00:00
<fieldset>
<%= nil_radio_button(@part,:category) %>
<%= content_tag_for(:label, @categories,:class=>"radio inline") do |category|%>
<%= radio_button("page_part", "category", category.id, :checked => category_checked_value(@part,category.id) )%>
<%= category.title%>
<% end %>
</fieldset>
2013-01-16 06:07:09 +00:00
</div>
2013-01-14 10:49:23 +00:00
<% else %>
<%= t("default_widget.no_support_setting")%>
<% end %>