Skip to content

Instantly share code, notes, and snippets.

@shadeslayer
Created March 24, 2017 16:20
Show Gist options
  • Save shadeslayer/03aface096e5b5ce92febb80609117bc to your computer and use it in GitHub Desktop.
Save shadeslayer/03aface096e5b5ce92febb80609117bc to your computer and use it in GitHub Desktop.
<%
f = taglib("/lib/form")
f.entry(:title => 'Package name', :description => "Package name to build") do
f.textbox(:field => 'packagename')
end
f.dropdownList(:name => "distributionType", :title => "Distribution") do
f.dropdownListBlock(:title => 'Debian', :value => 'debian') do
end
f.dropdownListBlock(:title => 'Ubuntu', :value => 'ubuntu') do
end
end
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment