1<?php $this->extends('layout.php', ['title' => 'Admin :: Package mailing lists']) ?> 2 3<?php $this->start('content') ?> 4 5<?php $this->include('pages/admin/menu.php', ['action' => $action]); ?> 6 7<dl> 8 <?php foreach ($lists as $list): ?> 9 <dt><?= $this->e($list['name']); ?>: </dt> 10 <dd> 11 <a href="mailto:<?= $this->noHtml($list['list_email']); ?>"> 12 <?= $this->e($list['list_email']); ?> 13 </a> 14 </dd> 15 <?php endforeach ?> 16</dl> 17 18<?php $this->end('content') ?> 19