Skip to content

Instantly share code, notes, and snippets.

@skiz
Forked from azuby/gist:1776020
Created February 9, 2012 00:53
Show Gist options
  • Save skiz/1776045 to your computer and use it in GitHub Desktop.
Save skiz/1776045 to your computer and use it in GitHub Desktop.
<%= form_tag "", :method => "get" do %>
<div class="toolbar">
<div class="left">
<%= label_tag(:from, "From:") %>
<%= text_field_tag :from, params[:from], :class => "datepicker" %>
<%= label_tag(:to, "to") %>
<%= text_field_tag :to, params[:to], :class => "datepicker" %>
</div>
<div class="right">
View Mode: <%= submit_tag "User", :name => 'group_by', :value => "user" %> |
<%= submit_tag "Job", :name => 'group_by', :value => "job" %> |
<%= submit_tag "Date", :name => 'group_by', :value => "date" %>
</div>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment