dialog.exam.selectlist.html 875 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<table class='table table-head table-hover table-bordered table-title-left table-margin'>
  <thead>
    <tr>
      <th class='row3 custom-th'>Exam ID</th>
      <th class='row3 custom-th'>Examination name</th>
      <th class='row3 custom-th'>Examination detail</th>
      <th class='row3 custom-th'>Selected</th>
    </tr>
  </thead>
  <tbody>
    <tr ng-repeat='ex in examlist | orderBy: "examid"'>
      <td class='custom-td center'>{{ ex.examid }}</td>
      <td class='custom-td'>{{ ex.examdata.topic.eng }}</td>
      <td class='custom-td'>{{ ex.examdata.description.eng }}</td>
      <td class='custom-td center'>
        <a class='btn-icon' ng-click='selectExam(ex)' ng-show='checkList(ex.examid)'><i class='fa fa-plus-square'></i></a>
      </td>
    </tr>
  </tbody>
</table>
<center>
  <a class='btn btn-danger btn-spacebot' ng-click='close()'>Close</a>
</center>