Sha256: dfe0cb6877b6c932571ee858ae1dd1677b222fffbd1eedc1cea0b904e51ba527
Contents?: true
Size: 954 Bytes
Versions: 7
Compression:
Stored size: 954 Bytes
Contents
<!-- -PHCDEV- Form - Script - Snippets --> <%= form_with(model: script_snippet, local: true) do |form| %> <!-- -PHCDEV- Form Validation --> <%= render "phcdevworks_notifications/bootstrap/validations", :object => @script_snippet %> <!-- -PHCDEV- Form Validation --> <!-- -PHCDEV- Form Input Fields --> <div class="mb-3"> <%= form.label :snippet_title, "Snippet Title", class: "form-label" %> <%= form.text_field :snippet_title, placeholder: "Snippet Title", class: "form-control" %> </div> <div class="mb-3"> <%= form.label :snippet_code, "Code Snippet", class: "form-label" %> <%= form.text_area :snippet_code, placeholder: "Code Snippet", rows: "10", class: "form-control" %> </div> <!-- -PHCDEV- Form Input Fields --> <!-- -PHCDEV- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- -PHCDEV- Form Submition Button --> <% end %> <!-- -PHCDEV- Form - Script - Snippets -->
Version data entries
7 entries across 7 versions & 2 rubygems