You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
682 B
30 lines
682 B
- content_for :page_title do |
|
= t('admin.invites.title') |
|
|
|
.filters |
|
.filter-subset |
|
%strong= t('admin.invites.filter.title') |
|
%ul |
|
%li= filter_link_to t('admin.invites.filter.all'), available: nil, expired: nil |
|
%li= filter_link_to t('admin.invites.filter.available'), available: 1, expired: nil |
|
%li= filter_link_to t('admin.invites.filter.expired'), available: nil, expired: 1 |
|
|
|
- if policy(:invite).create? |
|
%p= t('invites.prompt') |
|
|
|
= render 'invites/form' |
|
|
|
%hr/ |
|
|
|
%table.table |
|
%thead |
|
%tr |
|
%th |
|
%th= t('invites.table.uses') |
|
%th= t('invites.table.expires_at') |
|
%th |
|
%th |
|
%tbody |
|
= render @invites |
|
|
|
= paginate @invites
|
|
|