22 lines
798 B
HTML
22 lines
798 B
HTML
<ion-view>
|
||
<ion-nav-bar class="bar-stable">
|
||
<ion-nav-title>Session log</ion-nav-title>
|
||
<ion-nav-buttons side="primary">
|
||
<button class="button" href ui-sref="about">
|
||
<i class="ion-arrow-left-c"></i> Back
|
||
</button>
|
||
</ion-nav-buttons>
|
||
</ion-nav-bar>
|
||
<ion-content ng-controller="preferencesLogs" ng-init="init()" cache-view="false">
|
||
<button ng-show="isCordova" ng-click="logs.sendLogs()"><i class="fi-mail"></i>
|
||
<span translate>Send by email</span>
|
||
</button>
|
||
<ul>
|
||
<li ng-repeat="l in logs">
|
||
<span ng-class="{'text-warning': l.level=='warn', 'text-secondary': l.level=='debug', 'text-primary': l.level=='info', 'text-alert': l.level=='error' }">
|
||
{{l.msg}}
|
||
</span>
|
||
</li>
|
||
</ul>
|
||
</ion-content>
|
||
</ion-view>
|