summaryrefslogtreecommitdiff
path: root/www/templates/events-date-time-filter.html
blob: 465f79e50fc6291f21cd9c8539c145e116069834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<ion-view view-title="{{'kFilterEvents' | translate}}">



    <ion-content>
        <label class="item item-input">
            <span class="input-label">{{'kFromDate'|translate}}:</span>
            <input type="date" ng-model="$root.fromDate">
        </label>
        <label class="item item-input">
                   <span class="input-label">{{'kFromTime'|translate}}</span>
                    <input type="time" ng-model="$root.fromTime">
        </label>
        <label class="item item-input">
                    <span class="input-label">{{'kToDate'|translate}}</span>
                    <input type="date" ng-model="$root.toDate">
        </label>
        <label class="item item-input">
                    <span class="input-label">{{'kToTime'|translate}}</span>
                    <input type="time" ng-model="$root.toTime">
         </label>

        <br/>
        <center>
              <button class="button"
                                ng-click="saveFilters();" > {{'kSave'|translate}}
                        </button>
        <button class="button"
                                ng-click="removeFilters();" > {{'kReset'|translate}}
                        </button>



</center>

    </ion-content>

</ion-view>