summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/application/views/scripts/list/comments.phtml
blob: c7fb86a2590b5e1a3b83e08060e270247d8f3844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php if (! $this->compact): ?>
<div class="controls">
    <?= $this->tabs ?>
    <?= $this->render('list/components/selectioninfo.phtml') ?>
    <?= $this->paginator ?>
    <div class="sort-controls-container">
        <?= $this->limiter ?>
        <?= $this->sortBox ?>
    </div>
    <?= $this->filterEditor ?>
</div>
<?php endif ?>
<div class="content">
<?php if (! $comments->hasResult()): ?>
    <p><?= $this->translate('No comments found matching the filter') ?></p>
</div>
<?php return; endif ?>
    <table data-base-target="_next"
           class="table-row-selectable common-table multiselect"
           data-icinga-multiselect-url="<?= $this->href('monitoring/comments/show') ?>"
           data-icinga-multiselect-related="<?= $this->href("monitoring/comments") ?>"
           data-icinga-multiselect-data="comment_id">
    <thead class="print-only">
        <tr>
            <th><?= $this->translate('Type') ?></th>
            <th><?= $this->translate('Comment') ?></th>
        </tr>
    </thead>
    <tbody>
    <?php foreach ($comments->peekAhead($this->compact) as $comment): ?>
        <tr href="<?=  $this->href('monitoring/comment/show', array('comment_id' => $comment->id)) ?>">
            <td class="icon-col">
                <?= $this->partial('partials/comment/comment-description.phtml', array('comment' => $comment)) ?>
            </td>
            <td>
                <?= $this->partial(
                    'partials/comment/comment-detail.phtml',
                    array(
                        'comment'        => $comment,
                        'delCommentForm' => isset($delCommentForm) ? $delCommentForm : null
                        // Form is unset if the current user lacks the respective permission
                )) ?>
            </td>
        </tr>
    <?php endforeach ?>
    </tbody>
    </table>
<?php if ($comments->hasMore()): ?>
    <div class="dont-print action-links">
        <?= $this->qlink(
            $this->translate('Show More'),
            $this->url()->without(array('showCompact', 'limit')),
            null,
            array(
                'class'               => 'action-link',
                'data-base-target'    => '_next'
            )
        ) ?>
    </div>
<?php endif ?>
</div>