aowow/template/bricks/series.tpl.php
Sarjuuk e943e27b5b Template/Update (Part 1)
* update TrinityCore components to return new Frontend objects
   - SmartAI => Markup
   - Conditions => Data Listview
  * update template files to accept the new Frontend objects
2025-09-25 15:32:59 +02:00

17 lines
376 B
PHP

<?php
namespace Aowow\Template;
use \Aowow\Lang;
?>
<tr><th id="infobox-series"><?=$listTitle ?: Lang::achievement('series'); ?></th></tr>
<tr><td>
<div class="infobox-spacer"></div>
<table class="series">
<?php
foreach ($list as $idx => $itr):
echo $this->renderSeriesItem($idx, $itr, 12);
endforeach;
?>
</table>
</td></tr>