mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
Show permissions if not enabled
This commit is contained in:
parent
5e4fab9f5b
commit
c55d6510bf
@ -1311,7 +1311,8 @@ $LANG = array(
|
||||
'new_start_date' => 'New start date',
|
||||
'security' => 'Security',
|
||||
'see_whats_new' => 'See what\'s new in v:version',
|
||||
'wait_for_upload' => 'Please wait for the document upload to complete.'
|
||||
'wait_for_upload' => 'Please wait for the document upload to complete.',
|
||||
'upgrade_for_permissions' => 'Upgrade to our Enterprise plan to enable permissions.'
|
||||
|
||||
);
|
||||
|
||||
|
@ -31,13 +31,20 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if (Utils::hasFeature(FEATURE_USER_PERMISSIONS))
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">{!! trans('texts.permissions') !!}</h3>
|
||||
</div>
|
||||
<div class="panel-body form-padding-right">
|
||||
|
||||
@if ( ! Utils::hasFeature(FEATURE_USER_PERMISSIONS))
|
||||
<div class="alert alert-warning">{{ trans('texts.upgrade_for_permissions') }}</div>
|
||||
<script>
|
||||
$(function() {
|
||||
$('input[type=checkbox]').prop('disabled', true);
|
||||
})
|
||||
</script>
|
||||
@endif
|
||||
|
||||
{!! Former::checkbox('is_admin')
|
||||
->label(' ')
|
||||
@ -64,7 +71,6 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
{!! Former::actions(
|
||||
Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large(),
|
||||
|
Loading…
Reference in New Issue
Block a user