mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04: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',
|
'new_start_date' => 'New start date',
|
||||||
'security' => 'Security',
|
'security' => 'Security',
|
||||||
'see_whats_new' => 'See what\'s new in v:version',
|
'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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if (Utils::hasFeature(FEATURE_USER_PERMISSIONS))
|
|
||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title">{!! trans('texts.permissions') !!}</h3>
|
<h3 class="panel-title">{!! trans('texts.permissions') !!}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body form-padding-right">
|
<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')
|
{!! Former::checkbox('is_admin')
|
||||||
->label(' ')
|
->label(' ')
|
||||||
@ -64,7 +71,6 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
|
||||||
|
|
||||||
{!! Former::actions(
|
{!! Former::actions(
|
||||||
Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large(),
|
Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user