diff --git a/themes/bootstrap/templates/RecordTab/holdingsils.phtml b/themes/bootstrap/templates/RecordTab/holdingsils.phtml index 5446190453eb1423b1a6fe82002d7c7293154c23..7d480f89614b2e8d482be4f1da2ce2e3b976762a 100644 --- a/themes/bootstrap/templates/RecordTab/holdingsils.phtml +++ b/themes/bootstrap/templates/RecordTab/holdingsils.phtml @@ -135,9 +135,9 @@ <? $history = $this->driver->getRealTimeHistory(); ?> <? if (is_array($history) && !empty($history)): ?> <h3><?=$this->transEsc("Most Recent Received Issues")?></h3> -<ul> +<table class="table table-striped"> <? foreach ($history as $row): ?> - <li><?=$this->escapeHtml($row['issue'])?></li> + <tr><td><?=$this->escapeHtml($row['issue'])?></td></tr> <? endforeach; ?> -</ul> +</table> <? endif; ?>