<%= label(:time_format, "Time format:") %>
<%= select_tag(:time_format, options_for_select([["Lexically", :lexically], ["Timestamp", :timestamp]])) %>
<%= label_tag :visible, 'Show hidden:' %>
<%= check_box_tag("search[visible]", true, false, { class: 'datatable_variable' }) %>
<%= label_tag :deleted, 'Show deleted:' %>
<%= check_box_tag("search[deleted]", true, false, { class: 'datatable_variable' }) %>
<%= link_to 'Show additional search parameters', '#', id: 'search_container_link' %>
<%= form_tag(naf.applications_path, method: "get", id: 'application_search', class: 'search_select_input') do %>
<%= label(:title, "Title:") %>
<%= text_field(:search, :title, { class: 'datatable_variable' }) %>
<%= label(:application_run_group_name, "Run Group:") %>
<%= text_field(:search, :application_run_group_name, { class: 'datatable_variable' }) %>
<%= label(:command, "Command:") %>
<%= text_field(:search, :command, { class: 'datatable_variable' }) %>
<%= label(:short_name, "Short name:") %>
<%= text_field(:search, :short_name, { class: 'datatable_variable' }) %>
<%= label(:enabled, "App schedules enabled:") %>
<%= select(:search, :enabled, [["Ignore", nil], ["True", true], ["False", false]], {}, { class: 'datatable_variable' }) %>
<%= submit_tag("Search") %>
<% end %>
<% content_for :javascripts do %>
<% end %>