debian-mirror-gitlab/app/views/projects/pipeline_schedules/_tabs.html.haml

19 lines
703 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
%ul.nav-links.mobile-separator
2017-08-17 22:00:37 +05:30
%li{ class: active_when(scope.nil?) }>
= link_to schedule_path_proc.call(nil) do
2017-09-10 17:25:29 +05:30
= s_("PipelineSchedules|All")
2017-08-17 22:00:37 +05:30
%span.badge.js-totalbuilds-count
= number_with_delimiter(all_schedules.count(:id))
%li{ class: active_when(scope == 'active') }>
= link_to schedule_path_proc.call('active') do
2017-09-10 17:25:29 +05:30
= s_("PipelineSchedules|Active")
2017-08-17 22:00:37 +05:30
%span.badge
= number_with_delimiter(all_schedules.active.count(:id))
%li{ class: active_when(scope == 'inactive') }>
= link_to schedule_path_proc.call('inactive') do
2017-09-10 17:25:29 +05:30
= s_("PipelineSchedules|Inactive")
2017-08-17 22:00:37 +05:30
%span.badge
= number_with_delimiter(all_schedules.inactive.count(:id))