63 lines
2.2 KiB
HTML
63 lines
2.2 KiB
HTML
<vn-auto-search
|
|
model="model">
|
|
</vn-auto-search>
|
|
<vn-data-viewer
|
|
model="model"
|
|
class="vn-w-lg vn-mb-xl">
|
|
<vn-card>
|
|
<vn-table model="model">
|
|
<vn-thead>
|
|
<vn-tr>
|
|
<vn-th field="id" number>Id</vn-th>
|
|
<vn-th th-id="worker">Worker</vn-th>
|
|
<vn-th th-id="agency">Agency</vn-th>
|
|
<vn-th th-id="vehicle">Vehicle</vn-th>
|
|
<vn-th th-id="created">Date</vn-th>
|
|
<vn-th th-id="m3" number>m³</vn-th>
|
|
<vn-th th-id="description">Description</vn-th>
|
|
<vn-th shrink></vn-th>
|
|
</vn-tr>
|
|
</vn-thead>
|
|
<vn-tbody>
|
|
<a ng-repeat="route in model.data"
|
|
class="clickable vn-tr search-result"
|
|
ui-sref="route.card.summary({id: {{::route.id}}})">
|
|
<vn-td number>{{::route.id | dashIfEmpty}}</vn-td>
|
|
<vn-td expand>
|
|
<span
|
|
class="link"
|
|
vn-click-stop="workerDescriptor.show($event, route.workerFk)">
|
|
{{::route.workerNickname}}
|
|
</span>
|
|
</vn-td>
|
|
<vn-td>{{::route.agencyName | dashIfEmpty}}</vn-td>
|
|
<vn-td>{{::route.vehiclePlateNumber | dashIfEmpty}}</vn-td>
|
|
<vn-td>{{::route.created | date:'dd/MM/yyyy' | dashIfEmpty}}</vn-td>
|
|
<vn-td number>{{::route.m3 | dashIfEmpty}}</vn-td>
|
|
<vn-td>{{::route.description | dashIfEmpty}}</vn-td>
|
|
<vn-td>
|
|
<vn-icon-button
|
|
vn-click-stop="$ctrl.preview(route)"
|
|
vn-tooltip="Preview"
|
|
icon="desktop_windows">
|
|
</vn-icon-button>
|
|
</vn-td>
|
|
</a>
|
|
</vn-tbody>
|
|
</vn-table>
|
|
</vn-card>
|
|
</vn-data-viewer>
|
|
<vn-popup vn-id="summary">
|
|
<vn-route-summary
|
|
route="$ctrl.routeSelected">
|
|
</vn-route-summary>
|
|
</vn-popup>
|
|
<vn-worker-descriptor-popover
|
|
vn-id="workerDescriptor">
|
|
</vn-worker-descriptor-popover>
|
|
<a ui-sref="route.create"
|
|
vn-tooltip="New route"
|
|
vn-bind="+"
|
|
fixed-bottom-right>
|
|
<vn-float-button icon="add"></vn-float-button>
|
|
</a> |