Skip to content

Instantly share code, notes, and snippets.

@jcuffe
Created June 20, 2012 21:49
Show Gist options
  • Save jcuffe/2962442 to your computer and use it in GitHub Desktop.
Save jcuffe/2962442 to your computer and use it in GitHub Desktop.
<%= 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