Sha256: fe051c7812325829e7e21fda5711b9756f4d26d4066ab4644b80f603942eddcf
Contents?: true
Size: 893 Bytes
Versions: 15
Compression:
Stored size: 893 Bytes
Contents
<!-- Form - Script - Snippets --> <%= form_with(model: script_snippet, local: true) do |form| %> <!-- PHCNotifi Render Validation --> <%= render 'phcnotifi/default/validations', :object => @script_snippet %> <!-- PHCNotifi Render Validation --> <!-- Form Input Fields --> <div class="form-group field_with_errors"> <%= form.label :snippet_title, "Snippet Title" %> <%= form.text_field :snippet_title, class: 'form-control', placeholder: 'Snippet Title' %> </div> <div class="form-group field_with_errors"> <%= form.label :snippet_code, "Code Snippet" %> <%= form.text_area :snippet_code, class: 'form-control', placeholder: 'Code Snippet', rows: '10' %> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %> <!-- Form - Script - Snippets -->
Version data entries
15 entries across 15 versions & 2 rubygems