Do not enable inline editing for non privileged users

This commit is contained in:
FinnStutzenstein 2017-01-09 16:03:09 +01:00
parent 1eb9236a76
commit cf7033e033

View File

@ -296,7 +296,7 @@
<div style="width: 60%;" class="optional"> <div style="width: 60%;" class="optional">
<small> <small>
<div ng-style="{'visibility': (item.duration || item.hover) ? 'visible' : 'hidden'}"> <div ng-style="{'visibility': (item.duration || item.hover) ? 'visible' : 'hidden'}">
<div class="popover-wrapper"> <div class="popover-wrapper" os-perms="agenda.can_manage">
<i class="fa fa-clock-o"></i> <i class="fa fa-clock-o"></i>
<span editable-text="item.durationText" e-placeholder="hh:mm" <span editable-text="item.durationText" e-placeholder="hh:mm"
onshow="generateDurationText(item)" onaftersave="setDurationText(item)"> onshow="generateDurationText(item)" onaftersave="setDurationText(item)">
@ -307,15 +307,25 @@
</span> </span>
</span> </span>
</div> </div>
<div os-perms="!agenda.can_manage">
<span ng-if="item.duration">
<i class="fa fa-clock-o"></i> {{ item.duration | osMinutesToTime }}
</span>
</div>
</div> </div>
<div ng-style="{'visibility': (item.comment || item.hover) ? 'visible' : 'hidden'}"> <div ng-style="{'visibility': (item.comment || item.hover) ? 'visible' : 'hidden'}">
<div class="popover-wrapper"> <div class="popover-wrapper" os-perms="agenda.can_manage">
<i class="fa fa-info-circle"></i> <i class="fa fa-info-circle"></i>
<span editable-text="item.comment" onaftersave="save(item)"> <span editable-text="item.comment" onaftersave="save(item)">
<span ng-if="!item.comment" translate>Set comment...</span> <span ng-if="!item.comment" translate>Set comment...</span>
<span ng-if="item.comment">{{ item.comment }}</span> <span ng-if="item.comment">{{ item.comment }}</span>
</span> </span>
</div> </div>
<div os-perms="!agenda.can_manage">
<span ng-if="item.comment">
<i class="fa fa-info-circle"></i> {{ item.comment }}
</span>
</div>
</div> </div>
</small> </small>
</div> </div>