Created
March 23, 2017 06:34
-
-
Save 8parth/1ed15162d4dc53809ac200e2f2e8072a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%= form_for(@category) do |f| %> | |
| <% if f.object.errors.any? %> | |
| <div id="error_explanation"> | |
| <h2><%= pluralize(f.object.errors.count, "error") %> prohibited this category from being saved:</h2> | |
| <ul> | |
| <% f.object.errors.full_messages.each do |message| %> | |
| <li><%= message %></li> | |
| <% end %> | |
| </ul> | |
| </div> | |
| <% end %> | |
| <div class="field"> | |
| <%= f.label :name %> | |
| <%= f.text_field :name %> | |
| </div> | |
| <%= f.fields_for :sub_categories do |sub_cat_form| %> | |
| <div class="field"> | |
| <%= sub_cat_form.label "sub_category name" %> | |
| <%= sub_cat_form.text_field :name %> | |
| </div> | |
| <% end %> | |
| <div class="actions"> | |
| <%= f.submit %> | |
| </div> | |
| <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment