Created
June 20, 2012 21:49
-
-
Save jcuffe/2962442 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
<%= content_tag :div, :class => 'side_box' do %> | |
<%= content_tag :fieldset do %> | |
<%= content_tag :legend, 'Filter by date' %> | |
<%= content_tag :ol do %> | |
<%= content_tag :li do %> | |
<%= label_tag 'start-date', 'Starting date:' %> | |
<%= text_field_tag 'start-date', nil, :class => 'date-pick' %> | |
<% end %> | |
<%= content_tag :li do %> | |
<%= label_tag 'end-date', 'Ending Date:' %> | |
<%= text_field_tag 'end-date', nil, :class => 'date-pick' %> | |
<% end %> | |
<%= content_tag :li do %> | |
<%= link_to 'Filter', events_path, :class => 'light button green-pastel chunky' %> | |
<% end %> | |
<% end %> | |
<% end %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment