Sha256: f41696b5e9bca4850c46ae9d6545f9b5a55c7fea7b300a23650b28d3503cee46
Contents?: true
Size: 936 Bytes
Versions: 2
Compression:
Stored size: 936 Bytes
Contents
<!-- Form - Category --> <%= form_with(model: post_category, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @post_category %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group"> <%= form.label :category_name, "Category Name" %> <%= form.text_field :category_name, class: "form-control" %> </div> <div class="form-group"> <label>Attach SEO Data</label> <%= collection_select(:post_category, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("seo_title"), :id, :seo_title, {}, {class: "form-control"}) %> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %> <!-- Form - Category -->
Version data entries
2 entries across 2 versions & 1 rubygems