unserver-unify
Version:
58 lines (57 loc) • 1.94 kB
HTML
<div ng-controller="StudeyHistoriesController as ctrl">
<div class="forum">
<div class="tag-box tag-box-v6 margin-bottom-20 text-right clearfix">
<div class="form-inline pull-left ipad_count_aln">
{{'Total'|translate}}: <span class="badge badge-green rounded-2x">{{total}}</span>
</div>
</div>
</div>
<div class="panel">
<!-- if no courses found for this teacher -->
<div class="panel-body">
<!-- if found courses for this teacher -->
<table class="table table-striped" st-pipe="ctrl.getitems" st-table="ctrl.studycourses">
<tr class="info">
<th translate="" style="width: 40%">
Name
</th>
<th translate="" style="width: 15%">
Resources
</th>
<th translate="" style="width: 15%">
Scoring Point
</th>
<th translate="" style="width: 15%">
Final result
</th>
<th translate="" style="width: 15%">
Time (min)
</th>
</tr>
<tr ng-repeat="item in ctrl.studycourses">
<td class="project-status">
<a ui-sref="index.myspace.results.course({cid:item._id})">
{{item.name}}
</a>
</td>
<td>
{{item.progress.chapters}} / {{item.progress.resources}}
</td>
<td>
{{item.progress.tasks}} / {{item.progress.milestones}}
</td>
<td>
{{item.progress.course_score |number : 1}}
</td>
<td>
{{item.progress.time |number : 1}}
</td>
</tr>
<tr>
<td class="text-right" colspan="11" st-items-by-page="ctrl.itemNumber" st-pagination="" st-template="components/content/tablePagination.html">
</td>
</tr>
</table>
</div>
</div>
</div>