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
26b0169ae9
commit
94331c2858
@ -1,6 +1,6 @@
|
||||
@extends('header')
|
||||
|
||||
@section('content')
|
||||
@section('content')
|
||||
@parent
|
||||
@include('accounts.nav', ['selected' => ACCOUNT_USER_MANAGEMENT])
|
||||
|
||||
@ -31,13 +31,19 @@
|
||||
</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))
|
||||
<script>
|
||||
$(function() {
|
||||
$('input[type=checkbox]').prop('disabled', true);
|
||||
})
|
||||
</script>
|
||||
@endif
|
||||
|
||||
{!! Former::checkbox('is_admin')
|
||||
->label(' ')
|
||||
@ -61,12 +67,11 @@
|
||||
->id('permissions_edit_all')
|
||||
->text(trans('texts.user_edit_all'))
|
||||
->help(trans('texts.edit_all_help')) !!}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
{!! Former::actions(
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{!! Former::actions(
|
||||
Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large(),
|
||||
Button::success(trans($user && $user->confirmed ? 'texts.save' : 'texts.send_invite'))->submit()->large()->appendIcon(Icon::create($user && $user->confirmed ? 'floppy-disk' : 'send'))
|
||||
)!!}
|
||||
@ -88,4 +93,4 @@
|
||||
if(!viewChecked)$('#permissions_edit_all').prop('checked',false)
|
||||
}
|
||||
fixCheckboxes();
|
||||
@stop
|
||||
@stop
|
||||
|
Loading…
x
Reference in New Issue
Block a user