gitlabhq/app/views/search/_filter.html.haml

17 lines
728 B
Plaintext
Raw Normal View History

2013-01-25 09:07:21 +01:00
%fieldset
%legend Groups:
2013-03-14 12:11:20 +01:00
.clearfix
= select_tag 'group_id', options_from_collection_for_select(current_user.authorized_groups, :id, :name, params[:group_id]), prompt: 'All', include_blank: true, class: 'trigger-submit chosen'
%fieldset
%legend Teams:
.clearfix
= select_tag 'team_id', options_from_collection_for_select(current_user.authorized_teams, :id, :name, params[:team_id]), prompt: 'All', include_blank: true, class: 'trigger-submit chosen'
2013-01-25 09:07:21 +01:00
%fieldset
%legend Projects:
2013-03-14 12:11:20 +01:00
.clearfix
= select_tag 'project_id', options_from_collection_for_select(current_user.authorized_projects, :id, :name_with_namespace, params[:project_id]), prompt: 'All', include_blank: true, class: 'trigger-submit chosen'
2013-01-25 09:07:21 +01:00