Sha256: 85fbae235ed1a0553eebb14b06ef6beb5fa3cbc8f5527803435134a39ad000f0
Contents?: true
Size: 1.47 KB
Versions: 26
Compression:
Stored size: 1.47 KB
Contents
<!-- Form - List Items - Posts --> <%= form_with(model: [ @list_post, @list_item], url: form_url, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @list_item %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group"> <%= form.label :list_item_title, "Product/Service Title" %> <%= form.text_field :list_item_title, class: "form-control" %> </div> <div class="form-group"> <%= form.text_area :list_item_text, class: "form-control editor" %> <div id="word-count" class="mt-3"></div> </div> <div class="form-group"> <%= form.label :list_item_url, "Product/Service URL" %> <%= form.text_field :list_item_url, class: "form-control" %> </div> <div class="form-group"> <%= form.label :list_item_number, "Ordering Number" %> <%= form.select( :list_item_number, [["01","01"],["02","02"],["03","03"],["04","04"],["05","05"],["06","06"],["07","07"],["08","08"],["09","09"],["10","10"],["11","11"],["12","12"],["13","13"],["14","14"],["15","15"],["16","16"],["17","17"],["18","18"],["19","19"],["20","20"]], {}, {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 - List Items - Posts -->
Version data entries
26 entries across 26 versions & 1 rubygems