Merge branch 'fix-pro-dashboard' into 'develop'

Add PRO conditional to dashboard, fixes #78

Closes #78

See merge request gab/social/gab-social!37
This commit is contained in:
Developer 2019-08-20 15:44:53 +00:00
commit 2873ac7190
1 changed files with 4 additions and 1 deletions

View File

@ -133,7 +133,10 @@
%td
- if @account.is_pro?
=fa_icon 'check'
- if @account.pro_expires_at?
%time.formatted{ datetime: @account.pro_expires_at.iso8601, title: l(@account.pro_expires_at) }= l @account.pro_expires_at
- else
%td
- if @account.local?
= table_link_to '', t('admin.accounts.edit_pro'), edit_pro_admin_account_path(@account.id), class: 'button' if can?(:verify, @account)