2018-11-12 10:31:58 +00:00
|
|
|
<div>
|
|
|
|
<vn-horizontal class="header">
|
|
|
|
<vn-auto>
|
2019-02-10 21:52:35 +00:00
|
|
|
<vn-icon
|
|
|
|
icon="keyboard_arrow_left"
|
|
|
|
class="pointer"
|
2019-01-21 10:45:53 +00:00
|
|
|
ng-click="$ctrl.movePrevious($ctrl.skip)"
|
2019-02-10 21:52:35 +00:00
|
|
|
ng-show="$ctrl.displayControls"/>
|
2018-11-12 10:31:58 +00:00
|
|
|
</vn-icon>
|
|
|
|
</vn-auto>
|
|
|
|
<vn-one>
|
2019-01-21 10:45:53 +00:00
|
|
|
<strong>
|
2019-04-03 10:29:23 +00:00
|
|
|
<span translate>{{$ctrl.defaultDate | date: 'MMMM'}}</span>
|
|
|
|
<span>{{$ctrl.defaultDate | date: 'yyyy'}}</span>
|
2019-01-21 10:45:53 +00:00
|
|
|
</strong>
|
2018-11-12 10:31:58 +00:00
|
|
|
</vn-one>
|
|
|
|
<vn-auto>
|
2019-02-10 21:52:35 +00:00
|
|
|
<vn-icon
|
|
|
|
icon="keyboard_arrow_right"
|
|
|
|
class="pointer"
|
2019-01-21 10:45:53 +00:00
|
|
|
ng-click="$ctrl.moveNext($ctrl.skip)"
|
2019-02-26 11:51:01 +00:00
|
|
|
ng-show="$ctrl.displayControls">
|
2018-11-12 10:31:58 +00:00
|
|
|
</vn-icon>
|
|
|
|
</vn-auto>
|
|
|
|
</vn-horizontal>
|
2019-04-03 10:29:23 +00:00
|
|
|
|
|
|
|
<vn-vertical class="body">
|
|
|
|
<vn-horizontal class="weekdays">
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(1)">
|
|
|
|
<span>L</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(2)">
|
|
|
|
<span>M</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(3)">
|
|
|
|
<span>X</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(4)">
|
|
|
|
<span>J</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(5)">
|
|
|
|
<span>V</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(6)">
|
|
|
|
<span>S</span>
|
|
|
|
</section>
|
|
|
|
<section class="day" ng-click="$ctrl.selectAll(0)">
|
|
|
|
<span>D</span>
|
|
|
|
</section>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal class="days">
|
|
|
|
<section ng-repeat="day in $ctrl.days" class="day {{day.event.className || day.className}}"
|
|
|
|
ng-click="$ctrl.select($index)"
|
|
|
|
ng-style="{'color': day.event.style.color}">
|
|
|
|
<span ng-if="day.event" vn-tooltip="{{day.event.title}}"
|
|
|
|
ng-style="{'background-color': day.event.style.background}">
|
|
|
|
{{::day.dated | date: 'd'}}
|
|
|
|
</span>
|
|
|
|
<span ng-if="!day.event">{{::day.dated | date: 'd'}}</span>
|
|
|
|
</section>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-vertical>
|
2018-11-12 10:31:58 +00:00
|
|
|
</div>
|