58 lines
2.2 KiB
HTML
58 lines
2.2 KiB
HTML
<div class="vn-descriptor">
|
|
<div class="header">
|
|
<a translate-attr="{title: 'Return to module index'}" ui-sref="route.index">
|
|
<vn-icon icon="chevron_left"></vn-icon>
|
|
</a>
|
|
<a translate-attr="{title: 'Preview'}" ui-sref="route.card.summary({id: $ctrl.route.id})">
|
|
<vn-icon icon="desktop_windows"></vn-icon>
|
|
</a>
|
|
<vn-icon-menu
|
|
vn-id="more-button"
|
|
icon="more_vert"
|
|
show-filter="false"
|
|
value-field="callback"
|
|
translate-fields="['name']"
|
|
data="$ctrl.moreOptions"
|
|
on-change="$ctrl.onMoreChange(value)"
|
|
on-open="$ctrl.onMoreOpen()">
|
|
</vn-icon-menu>
|
|
</div>
|
|
<div class="body">
|
|
<div class="attributes">
|
|
<h5>{{$ctrl.route.name}}</h5>
|
|
<vn-label-value label="Id"
|
|
value="{{$ctrl.route.id}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Date"
|
|
value="{{$ctrl.route.created | date: 'dd/MM/yyyy'}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Agency"
|
|
value="{{$ctrl.route.agencyMode.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Zone"
|
|
value="{{$ctrl.route.zone.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Volume"
|
|
value="{{$ctrl.route.m3 | dashIfEmpty}} / {{$ctrl.route.vehicle.m3 | dashIfEmpty}} m³">
|
|
</vn-label-value>
|
|
<vn-label-value label="Description"
|
|
value="{{$ctrl.route.description}}">
|
|
</vn-label-value>
|
|
</div>
|
|
<div class="icons">
|
|
<vn-icon
|
|
vn-tooltip="Volume exceded"
|
|
icon="icon-volume"
|
|
ng-class="{bright: $ctrl.route.m3 > $ctrl.route.vehicle.m3 && $ctrl.route.vehicle.m3 != NULL}">
|
|
</vn-icon>
|
|
</div>
|
|
<vn-quick-links
|
|
links="$ctrl.quicklinks">
|
|
</vn-quick-links>
|
|
</div>
|
|
</div>
|
|
<vn-confirm
|
|
vn-id="updateVolumeConfirmation"
|
|
on-response="$ctrl.updateVolume($response)"
|
|
question="Are you sure you want to update the volume?">
|
|
</vn-confirm> |