diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:20:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:20:19 +0000 |
commit | 7b64af59410f1a658c70b8be367156fc3f4da17c (patch) | |
tree | 367fc1ef06004119d3941460a22c4f83b1ca4d7d /application/views/scripts/integrations/index.phtml | |
parent | Initial commit. (diff) | |
download | icingaweb2-module-generictts-7b64af59410f1a658c70b8be367156fc3f4da17c.tar.xz icingaweb2-module-generictts-7b64af59410f1a658c70b8be367156fc3f4da17c.zip |
Adding upstream version 2.1.0.upstream/2.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'application/views/scripts/integrations/index.phtml')
-rw-r--r-- | application/views/scripts/integrations/index.phtml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/application/views/scripts/integrations/index.phtml b/application/views/scripts/integrations/index.phtml new file mode 100644 index 0000000..0f657ce --- /dev/null +++ b/application/views/scripts/integrations/index.phtml @@ -0,0 +1,56 @@ +<div class="controls"> + <?= $tabs ?> + <?= $this->qlink( + $this->translate('Integrate New Ticket System') , + 'generictts/integrations/new', + null, + array( + 'class' => 'action-link', + 'data-base-target' => '_next', + 'icon' => 'plus', + 'title' => $this->translate('Integrate a new trouble ticket system') + ) + ) ?> +</div> +<div class="content"> +<?php /** @var \Icinga\Application\Config $integrations */ if ($integrations->isEmpty()): ?> + <p><?= $this->translate('No ticket system has been integrated yet.') ?></p> +<?php return; endif ?> + <table class="tts-integrations-table common-table table-row-selectable" data-base-target="_next"> + <thead> + <tr> + <th><?= $this->translate('Name') ?></th> + <th><?= $this->translate('Pattern') ?></th> + <th><?= $this->translate('URL') ?></th> + </tr> + </thead> + <tbody> + <?php foreach ($integrations as $name => $integration): /** @var object $role */ ?> + <tr> + <td> + <?= $this->qlink( + $name, + 'generictts/integrations/update', + array('integration' => $name), + array('title' => sprintf($this->translate('Update integration %s'), $name)) + ) ?> + </td> + <td><?= $this->escape($integration->pattern) ?></td> + <td><?= $this->escape($integration->url) ?></td> + <td class="icon-col text-right"> + <?= $this->qlink( + '', + 'generictts/integrations/remove', + array('integration' => $name), + array( + 'class' => 'action-link', + 'icon' => 'cancel', + 'title' => sprintf($this->translate('Remove integration %s'), $name) + ) + ) ?> + </td> + </tr> + <?php endforeach ?> + </tbody> + </table> +</div> |