1<?php $this->extends('layout.php', ['title' => 'Admin :: Quick fix responses']) ?>
2
3<?php $this->start('content') ?>
4
5<?php $this->include('pages/admin/menu.php', ['action' => $action]); ?>
6
7<h3>List Responses</h3>
8
9<table>
10    <tbody>
11        <tr class="bug_header">
12            <th>id</th>
13            <th>name</th>
14            <th>status</th>
15            <th>title</th>
16            <th>message</th>
17            <th>project</th>
18            <th>package_name</th>
19            <th>webonly</th>
20        </tr>
21        <?php foreach ($responses as $response): ?>
22            <tr>
23                <td class="bug_bg0"><?= $response['id']; ?></td>
24                <td class="bug_bg1"><?= $this->e($response['name']); ?></td>
25                <td class="bug_bg0"><?php echo $response['status'] ? $this->e($response['status']) : ''; ?></td>
26                <td class="bug_bg1"><?= $this->e($response['title']); ?></td>
27                <td class="bug_bg0 tbl-row-message">
28                    <?= nl2br($this->e($response['message'])); ?>
29                </td>
30                <td class="bug_bg1"><?= $this->e($response['project']); ?></td>
31                <td class="bug_bg0"><?php echo $response['package_name'] ? $this->e($response['package_name']) : ''; ?></td>
32                <td class="bug_bg1"><?= $response['webonly']; ?></td>
33            </tr>
34        <?php endforeach ?>
35    </tbody>
36</table>
37
38<?php $this->end('content') ?>
39