Tune project specific build_lists page filters. Cleanup. Refs #223
This commit is contained in:
parent
9cbc30cdde
commit
7f31246463
|
@ -56,7 +56,7 @@ class BuildList::Filter
|
||||||
:project_name => nil
|
: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[:status] = @options[:status].present? ? @options[:status].to_i : nil
|
||||||
@options[:created_at_start] = build_date_from_params(:created_at_start, @options)
|
@options[:created_at_start] = build_date_from_params(:created_at_start, @options)
|
||||||
@options[:created_at_end] = build_date_from_params(:created_at_end, @options)
|
@options[:created_at_end] = build_date_from_params(:created_at_end, @options)
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
.lefter= f.radio_button :ownership, 'owned', :class => 'niceRadio', :id => 'myradio1'
|
.lefter= f.radio_button :ownership, 'owned', :class => 'niceRadio', :id => 'myradio1'
|
||||||
.lefter= t("layout.build_lists.ownership.owned")
|
.lefter= t("layout.build_lists.ownership.owned")
|
||||||
.both
|
.both
|
||||||
|
- unless @project
|
||||||
.table
|
.table
|
||||||
.lefter= f.radio_button :ownership, 'related', :class => 'niceRadio', :id => 'myradio2'
|
.lefter= f.radio_button :ownership, 'related', :class => 'niceRadio', :id => 'myradio2'
|
||||||
.lefter= t("layout.build_lists.ownership.related")
|
.lefter= t("layout.build_lists.ownership.related")
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
# -*- encoding : utf-8 -*-
|
|
||||||
require './lib/ext/core/string'
|
|
Loading…
Reference in New Issue