diff options
Diffstat (limited to 'www/templates')
| -rw-r--r-- | www/templates/events.html | 18 | ||||
| -rw-r--r-- | www/templates/login.html | 8 |
2 files changed, 15 insertions, 11 deletions
diff --git a/www/templates/events.html b/www/templates/events.html index 483308f2..c9400acb 100644 --- a/www/templates/events.html +++ b/www/templates/events.html @@ -41,9 +41,9 @@ <ion-item collection-repeat="event in events| filter:search.text" item-height="event.Event.height" id="item-{{$index}}" > - <span style="float:right;margin-top:-18px;background-color:#6d0909;color:#fff;font-size:11px;opacity:0.7;width:90px;border-radius: 0px 0px 5px 5px;"> <i class="ion-clock"></i> {{::prettifyTime(event.Event.StartTime)}}</span> + <span style="float:right;margin-top:-18px;background-color:#6d0909;color:#fff;font-size:11px;opacity:0.7;width:90px;border-radius: 0px 0px 5px 5px;"> <i class="ion-clock"></i> {{prettifyTime(event.Event.StartTime)}}</span> - <span style="float:left;margin-top:-18px;background-color:#444444;color:#fff;font-size:11px;opacity:0.7;width:90px;border-radius: 0px 0px 5px 5px;"> <i class="ion-calendar"></i> {{::prettifyDate(event.Event.StartTime)}}</span> + <span style="float:left;margin-top:-18px;background-color:#444444;color:#fff;font-size:11px;opacity:0.7;width:90px;border-radius: 0px 0px 5px 5px;"> <i class="ion-calendar"></i> {{prettifyDate(event.Event.StartTime)}}</span> <div class="row"> @@ -80,27 +80,27 @@ <br/> <span style="font-size:80%; color:rgb(110,110,110)"> - {{::event.Event.Length}}s + {{event.Event.Length}}s </span> </div> <!-- col col left--> <div class="col col-80"> <div class="item-text-wrap"> <i class="ion-monitor"></i> - <b>{{::event.Event.MonitorName}}</b> ({{::event.Event.Name}}) + <b>{{event.Event.MonitorName}}</b> ({{event.Event.Name}}) </div> - <i class="ion-images"></i> {{::event.Event.Frames}} - <i class="ion-ios-bell-outline"></i> {{::event.Event.AlarmFrames}} - <i class="ion-arrow-graph-up-right"></i> {{::event.Event.TotScore}} + <i class="ion-images"></i> {{event.Event.Frames}} + <i class="ion-ios-bell-outline"></i> {{event.Event.AlarmFrames}} + <i class="ion-arrow-graph-up-right"></i> {{event.Event.TotScore}} </div> </div> <!--row--> <div class="row" style="font-size:80%; color:rgb(110,110,110)"> - <div class="item-text-wrap"><i class="ion-calendar"></i> {{::prettify(event.Event.StartTime)}} + <div class="item-text-wrap"><i class="ion-calendar"></i> {{prettify(event.Event.StartTime)}} <br/> - <i class="ion-clipboard"></i> {{::event.Event.Notes}} + <i class="ion-clipboard"></i> {{event.Event.Notes}} <!-- <br/> Default video:{{event.Event.relativePath}}{{event.Event.DefaultVideo}}--> </div> </div> diff --git a/www/templates/login.html b/www/templates/login.html index 6e9280cb..9a7794cc 100644 --- a/www/templates/login.html +++ b/www/templates/login.html @@ -56,15 +56,19 @@ placeholder="ZM portal url " ng-model="loginData.url" ng-keyup="portalKeypress($event)"> </label> - <label class="item item-input item-floating-label" > + + + <span style="float:right;margin-top:-7px;background-color:#6d0909;color:#fff;font-size:14px;opacity:0.7;width:30px;border-radius: 0px 0px 5px 5px;" on-tap="detectCgi();"> <i class="ion-help-circled"></i> help</span> + + <span class="input-label">path to cgi-bin</span> <input autocapitalize="none" autocomplete="off" autocorrect="off" type="text" placeholder="eg. server.com/zm/cgi-bin" ng-model="loginData.streamingurl"> - </label> + </label> <label class="item item-input item-floating-label" > <span class="input-label">ZM api url</span> <input autocapitalize="none" |
