Sha256: b151691c3e5391af3eca3e033554503f33f6d9833037f27d84756f8f242948d3

Contents?: true

Size: 622 Bytes

Versions: 1

Compression:

Stored size: 622 Bytes

Contents

<%
@part = part
@index = (params[:index] || @index || 1).to_i
-%>
<div class="page" id="page-<%= @index %>">
	<div class="part" id="part-<%= @index %>">
		<%= hidden_field_tag "part[#{@index - 1}][name]", @part.name %>
		<p>
			<label for="part[<%= @index - 1 %>}][filter_id]">Filter</label>
			<%= select_tag "part[#{@index - 1}][filter_id]", options_for_select([['<none>', '']] + TextFilter.find_all.map { |s| s.registered_id }, @part.filter_id) %>
		</p>
		<div><%= text_area_tag "part[#{@index - 1}][content]", h(@part.content), :class => "textarea", :style => "width: 100%" %></div>
	</div>
</div>
<%
@index += 1;
-%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
radiant-0.5.0 app/views/admin/page/_part.rhtml