Sagi Dayan
d80c2661a1
Now you can lock the grade page with your password. still needs some work for unlocking - there should be a password prompt
29 lines
No EOL
598 B
HTML
29 lines
No EOL
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> |