Sha256: 3cd588b668445c7c890ae9765014bd56b4c41d20ee4e47e1343c68f6bfcb28e4
Contents?: true
Size: 1.7 KB
Versions: 4
Compression:
Stored size: 1.7 KB
Contents
<%= form_for(script_licence) do |f| %> <%= render 'phcnotifi/validations', :object => @script_licence %> <div class="form-group field_with_error"> <%= f.label :lcncname, "Licence Name" %> <%= f.text_field :lcncname, placeholder: "Licence Name", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= f.label :lcncdescription, "Licence Description" %> <%= f.text_area :lcncdescription, placeholder: "Licence Name", class: "form-control" %> </div> <div class="form-group field_with_error"> <%= f.label :lcnccomgpl, "GPL(v3) Compatible" %> <%= f.select( :lcnccomgpl, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="form-group field_with_error"> <%= f.label :lcncarvlfsf, "FSF Approval" %> <%= f.select( :lcncarvlfsf, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="form-group field_with_error"> <%= f.label :lcncarvlosi, "OSI Approval" %> <%= f.select( :lcncarvlosi, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="form-group field_with_error"> <%= f.label :lcncarvlcopyfree, "Copyfree Approval" %> <%= f.select( :lcncarvlcopyfree, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="form-group field_with_error"> <%= f.label :lcncarvldebian, "Debian Approval" %> <%= f.select( :lcncarvldebian, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="form-group field_with_error"> <%= f.label :lcncarvlfedora, "Fedora Approval" %> <%= f.select( :lcncarvlfedora, [['No','No'],['Yes','Yes']], {}, {class: "form-control"}) %> </div> <div class="actions"> <%= f.submit class: "btn btn-primary" %> </div> <% end %>
Version data entries
4 entries across 4 versions & 1 rubygems