personal-selected_course/personal_selected_course/index.html.erb

22 lines
680 B
Plaintext

<table class="table table-hover table-striped courses-index">
<caption><h3>{{widget-title}}</h3></caption>
<thead>
<tr>
<th class="col-md-1">{{th_year}}</th>
<th class="col-md-3">{{th_course_title}}</th>
<th class="col-md-2">{{th_course_category}}</th>
<th class="col-md-2">{{th_course_semester}}</th>
<th class="col-md-2">{{th_authors}}</th>
</tr>
</thead>
<tbody data-level="0" data-list="courses">
<tr>
<td>{{year}}</td>
<td><a href="{{link_to_show}}">{{course_title}}</a></td>
<td>{{category}}</td>
<td>{{semester}}</td>
<td>{{authors}}</td>
</tr>
</tbody>
</table>
{{pagination_goes_here}}