Autoría | Ultima modificación | Ver Log |
<div id="block-foros-listado-{{uniqid}}">
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<thead>
<tr>
<th class="d-none d-lg-block">Imagén</td>
<th>Curso</td>
<th class="d-none d-lg-block">Categoría</td>
<th>Foro</td>
</tr>
</thead>
<tbody>
{{#courses}}
<tr>
<td class="d-none d-lg-block">
<a href="{{viewurl}}" >
<img src="{{courseimage}}" style="width: 100px; height: auto">
</a>
</td>
<td class="w-100 text-truncate">
<a href="{{viewurl}}" class="coursename mr-2">
<span class="text-truncate">{{fullnamedisplay}}</span>
</a>
</td>
<td class="w-100 text-truncate d-none d-lg-block">
{{coursecategory}}
</td>
<td>
<a href="{{forumurl}}">{{forumname}}</a>
</td>
</tr>
{{/courses}}
</tbody>
</table>
</div>
</div>
</div>