summaryrefslogtreecommitdiff
path: root/app/views/admin/users/index.html.haml
blob: f9b631ed6cfa89bfdd3ece0015fc64e2fef23ab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- page_title _("Users")

%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' }
    %a.nav-link{ href: '#cohorts', class: active_when(params[:tab] == 'cohorts'), data: { toggle: 'tab' }, role: 'tab' }
      = s_('AdminUsers|Cohorts')

.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'