Sha256: 36d20eb050155687ab3c73ca8a25c23b3509d1772551538326deaa859dd113f4
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 KB
Contents
<!-- Form - Command - Post --> <%= form_with(model: command_post, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @command_post %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group"> <%= form.label :post_title, "Command List Title" %> <%= form.text_field :post_title, class: "form-control" %> </div> <div class="form-group"> <%= form.label :post_description, "Command List Description" %> <%= form.text_area :post_description, class: "form-control" %> </div> <div class="form-group"> <%= form.label :post_status, "Command List Status" %> <%= form.select( :post_status, [["Draft","draft"],["Published","published"],["Review","review"]], {}, {class: "form-control"}) %> </div> <div class="form-group"> <%= form.label :post_image, "Featured Image" %> <%= form.file_field :post_image, class: "form-control" %> </div> <% if form.object.post_image.attached? %> <%= image_tag main_app.url_for(form.object.post_image), class: "img-responsive img-thumbnail" %> <% end %> <div class="form-group"> <label>Select a Category</label> <div class="panel-body"> <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Modules::Category.all, :id, :category_name do |post_category| %> <%= post_category.check_box %> <%= post_category.label %><br> <% end %> </div> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %> <!-- Form - Command - Item -->
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcdevworks_tutorials-7.0.0 | app/views/phcdevworks_tutorials/command/posts/_form.html.erb |