Created
September 10, 2013 16:42
-
-
Save braidn/6512120 to your computer and use it in GitHub Desktop.
This file contains 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
<%= search_form_for search, url: contributors_performance_admin_reports_path do |s| %> | |
<div class="date-range-filter field align-center"> | |
<%= label_tag nil, t(:start), class: 'inline' %> | |
<%= s.text_field :created_at_gt, class: 'datepicker datepicker-from' %> | |
<span class="range-divider"> | |
<i class="icon-arrow-right"></i> | |
</span> | |
<%= s.text_field :created_at_lt, class: 'datepicker datepicker-to' %> | |
<%= label_tag nil, t(:start), class: 'inline' %> | |
<span class='range-divider'></span> | |
<%= s.select :contributor_id_eq, options_from_collection_for_select(Quarterly::Contributor.scoped, | |
'id', | |
'name') %> | |
</div> | |
<div class="actions"> | |
<%= button t(:search), 'icon-search'%> | |
</div> | |
<% end -%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment