Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created November 20, 2010 21:48
Show Gist options
  • Select an option

  • Save hayeah/708199 to your computer and use it in GitHub Desktop.

Select an option

Save hayeah/708199 to your computer and use it in GitHub Desktop.
<form action="#{search_path}" data-remote="true" data-type="html">
<div class='section'>
<h2>Dollar Amount Required</h2>
<%= slider(Deal,:dollar_amount_required,:format => "million",:step => 500_000) %>
</div>
<div class='section'>
<h2>Expected IRR</h2>
<%= slider(Deal,:expected_irr,:format => "percent",:step => 50) %>
</div>
<div class='section'>
<h2>Total Project Value</h2>
<%= slider(Project,:total_dollar_value,:format => "million",:step => 500_000) %>
</div>
<div class='section'>
<h2>Deal Types</h2>
<%= checkboxes("deal[type_name][]",Deal.types) %>
</div>
<div class='section'>
<h2>Project Types</h2>
<%= checkboxes("project[type_name][]",Project.types) %>
</div>
<div class='section'>
<h2>Location</h2>
<%= checkboxes("project[location_state][]",Project.location_states) %>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment