Created
November 20, 2010 21:48
-
-
Save hayeah/708199 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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