Sha256: e67941f1549604163070e57aa4a97a302f24b667638af82933f5cec02aed532b
Contents?: true
Size: 989 Bytes
Versions: 21
Compression:
Stored size: 989 Bytes
Contents
<% if @blog.errors.any? %> <div id="error_explanation"> <h2>Please correct the following errors:</h2> <% @blog.errors.to_a.in_groups(2, false).each do |group| %> <ul> <% group.each do |msg| %> <li><%= msg %></li> <% end %> </ul> <% end %> <br style="clear: both;" /> </div> <br style="clear: both;" /> <% end %> <fieldset class="form_container"> <%= legend_tag 'Blog Settings' -%> <div class="form_column"> <%= f.text_field :title, :label => 'Blog Title' -%> <%= f.text_field :slug, :value => @blog.slug -%> <%= f.select :posts_per_page, %w{10 20 30 50} -%> </div> <div class="form_column"> <%= f.check_box :rss_enabled, :label => 'RSS Feed', :inline_label => 'Enabled' -%> <%= f.text_area :description -%> </div> <br style="clear: both;" /> <div class="link_block"> <%= f.submit 'Save', :class => 'link_button' -%> <%= link_to 'Cancel', '/', :class => 'link_button' -%> </div> </fieldset> <br style="clear: both;" />
Version data entries
21 entries across 21 versions & 1 rubygems