Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%= form_for(@panel_category, :url => "/panel/categories") do |f| %>
- <% if @panel_category.errors.any? %>
- <div id="error_explanation">
- <h2><%= pluralize(@panel_category.errors.count, "error") %> prohibited this panel_category from being saved:</h2>
- <ul>
- <% @panel_category.errors.full_messages.each do |msg| %>
- <li><%= msg %></li>
- <% end %>
- </ul>
- </div>
- <% end %>
- <div class="field">
- <%= f.label :title %><br />
- <%= f.text_field :title %>
- </div>
- <div class="field">
- <%= f.label :description %><br />
- <%= f.text_area :description %>
- </div>
- <div class="field">
- <%= f.label :photo_id %><br />
- <%= f.text_field :photo_id %>
- </div>
- <div class="actions">
- <%= f.submit %>
- </div>
- <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement