|
@@ -45,6 +45,7 @@
|
|
|
<table class="table table-sm table-striped p-0 m-0">
|
|
|
<thead class="bg-light">
|
|
|
<tr>
|
|
|
+ <th class="border-0"></th>
|
|
|
<th class="border-0">Display Name</th>
|
|
|
<th class="border-0">Internal Name</th>
|
|
|
<th class="border-0">Tags</th>
|
|
@@ -55,6 +56,9 @@
|
|
|
<tbody>
|
|
|
@foreach($handouts as $handout)
|
|
|
<tr class="{{$handout->is_active ? '' : 'bg-light text-secondary'}}">
|
|
|
+ <td>
|
|
|
+ <img width="100" src="/api/handout/download-thumbnail/{{ $handout->uid }}" alt="{{$handout->display_name}}">
|
|
|
+ </td>
|
|
|
<td>{{ $handout->display_name }}</td>
|
|
|
<td>{{ $handout->internal_name }}</td>
|
|
|
<td>{{ $handout->tags }}</td>
|