orbit-feed/app/views/panel/feed/back_end/feeds/_form.html.erb

28 lines
973 B
Plaintext

<legend><h3 style="margin-left: 10px;"><%= t('feed.channel') %></h3></legend>
<fieldset style="margin-left: -25px;">
<div class="control-group">
<label class="control-label" for="inputURL"><%= t('feed.choose_rss') %>:</label>
<div class="controls">
<%= select_tag(:site, options_for_select(@sites)) %>
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputURL"><%= t('feed.choose') %>:</label>
<div class="controls">
<% @categories.each_with_index do |category, i| %>
<%= content_tag :label, :class => "checkbox inline" do -%>
<%= check_box("announcement_feed", "categories", {:multiple => true, :id => i}, category, nil) %>
<label for="<%= i %>"><%= category %></label>
<% end -%>
<% end %>
</div>
</div>
<div class="control-group">
<div class="controls">
<%= f.submit t("submit"), :class => "btn btn-primary" %>
</div>
</div>
</fieldset>