Sha256: 4cd694b048137298d05c90af7768e47362373fa0f06d5c919dafe87364455ba1
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
<%= form_for([@script_url.listing, @script_url], url: form_url) do |form_phc_scriptcdn_urls| %> <!-- PHCNotifi Render Validation --> <%= render 'phcnotifi/validations', :object => @script_url %> <!-- Form Input Fields --> <div class="form-group field_with_error"> <%= form_phc_scriptcdn_urls.label :scripturl, "Script URL" %> <%= form_phc_scriptcdn_urls.text_field :scripturl, placeholder: "Script URL", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form_phc_scriptcdn_urls.label :scripturlrelease, "Initial Release" %> <%= form_phc_scriptcdn_urls.date_select :scripturlrelease, class: "form-control" %> </div> <div class="form-group field_with_error"> <%= form_phc_scriptcdn_urls.label :scripturlcdnupdate, "Latest Release" %> <%= form_phc_scriptcdn_urls.date_select :scripturlcdnupdate, class: "form-control" %> </div> <div class="form-group field_with_errors"> <label>Script Version</label> <%= collection_select(:script_url, :version_id, Phcscriptcdnpro::Script::Version.order('scriptversion'), :id, :scriptversion, {}, {class: "form-control"}) %> </div> <div class="form-group field_with_errors"> <label>Script Extensions</label> <%= collection_select(:script_url, :extension_id, Phcscriptcdnpro::Script::Extension.order('scriptextensionname'), :id, :scriptextension, {}, {class: "form-control"}) %> </div> <!-- Form Input Fields --> <!-- Form Submition Button --> <div class="actions"> <%= form_phc_scriptcdn_urls.submit class: "btn btn-primary" %> </div> <!-- For Submition Button --> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcscriptcdnpro-73.0.0 | app/views/phcscriptcdnpro/script/urls/_form.html.erb |