jce-mobile-app/www/templates/grades.html
Sagi Dayan d80c2661a1 Added Settings and UI tweaks
Now you can lock the grade page with your password.
still needs some work for unlocking  - there should be a
password prompt
2015-01-13 02:14:24 +02:00

29 lines
598 B
HTML

<ion-view view-title="גיליון ציונים" >
<ion-content>
<div class="page-content">
<h1><i class="icon ion-clipboard"></i> גיליון ציונים</h1>
<div class="list card" ng-repeat="grade in grades | orderBy:['-year','semester']">
<div class="item item-avatar">
<h2>{{grade.subject}}</h2>
<p>{{ grade.credits }} נק"ז</p>
</div>
<div class="item tabs tabs-secondary item-divider" ng-repeat="test in grade.tests">
<p class="tab-item" href="#" >
מועד {{test.moed}}' : {{test.final_grade}}
</p>
</div>
</div>
</div>
</ion-content>
</ion-view>