Tune project specific build_lists page filters. Cleanup. Refs #223

This commit is contained in:
Pavel Chipiga 2012-03-22 22:58:02 +02:00
parent 9cbc30cdde
commit 7f31246463
3 changed files with 6 additions and 7 deletions

View File

@ -56,7 +56,7 @@ class BuildList::Filter
:project_name => nil
}))
@options[:ownership] = @options[:ownership].presence || 'owned'
@options[:ownership] = @options[:ownership].presence || (@project ? 'index' : 'owned')
@options[:status] = @options[:status].present? ? @options[:status].to_i : nil
@options[:created_at_start] = build_date_from_params(:created_at_start, @options)
@options[:created_at_end] = build_date_from_params(:created_at_end, @options)

View File

@ -24,6 +24,7 @@
.lefter= f.radio_button :ownership, 'owned', :class => 'niceRadio', :id => 'myradio1'
.lefter= t("layout.build_lists.ownership.owned")
.both
- unless @project
.table
.lefter= f.radio_button :ownership, 'related', :class => 'niceRadio', :id => 'myradio2'
.lefter= t("layout.build_lists.ownership.related")

View File

@ -1,2 +0,0 @@
# -*- encoding : utf-8 -*-
require './lib/ext/core/string'