debian-mirror-gitlab/app/views/admin/users/index.html.haml

18 lines
715 B
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
- page_title _("Users")
2015-09-11 14:41:01 +05:30
2021-03-11 19:13:27 +05:30
%ul.nav-links.nav-tabs.nav.js-users-tabs{ role: 'tablist' }
%li.nav-item.js-users-tab-item{ role: 'presentation' }
%a.nav-link{ href: '#users', class: active_when(params[:tab] != 'cohorts'), data: { toggle: 'tab' }, role: 'tab' }
= s_('AdminUsers|Users')
%li.nav-item.js-users-tab-item{ role: 'presentation' }
2021-04-17 20:07:23 +05:30
%a.nav-link{ href: '#cohorts', class: active_when(params[:tab] == 'cohorts'), data: { toggle: 'tab' }, role: 'tab' }
2021-03-11 19:13:27 +05:30
= s_('AdminUsers|Cohorts')
2019-03-02 22:35:43 +05:30
2021-03-11 19:13:27 +05:30
.tab-content
.tab-pane{ id: 'users', class: ('active' if params[:tab] != 'cohorts') }
= render 'users'
.tab-pane{ id: 'cohorts', class: ('active' if params[:tab] == 'cohorts') }
= render 'cohorts'
2014-09-02 18:07:02 +05:30