37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<div class="main-with-right-menu">
|
|
<vn-data-viewer
|
|
data="data"
|
|
is-loading="!data"
|
|
class="vn-w-xs">
|
|
<vn-card>
|
|
<vn-table>
|
|
<vn-tbody>
|
|
<vn-tr ng-repeat="row in data | orderBy:'day'">
|
|
<vn-td>{{::row.day | dateTime:'dd/MM/yyyy'}}</vn-td>
|
|
<vn-td style="width: 1px; text-align: center">
|
|
<vn-icon-button
|
|
icon="delete"
|
|
translate-attr="{title: 'Delete'}"
|
|
ng-click="$ctrl.onDelete(row.id)">
|
|
</vn-icon-button>
|
|
</vn-td>
|
|
</vn-tr>
|
|
</vn-tbody>
|
|
</vn-table>
|
|
</vn-card>
|
|
</vn-data-viewer>
|
|
</div>
|
|
<vn-side-menu side="right">
|
|
<vn-zone-calendar
|
|
events="events"
|
|
exclusions="data"
|
|
on-selection="$ctrl.onCreate($days)">
|
|
</vn-zone-calendar>
|
|
</vn-side-menu>
|
|
<vn-confirm
|
|
vn-id="confirm"
|
|
message="This item will be deleted"
|
|
question="Are you sure you want to continue?"
|
|
on-response="$ctrl.delete(response)">
|
|
</vn-confirm>
|