1<div class="page-header">
2    <h2><?= t('Integration with third-party services') ?></h2>
3</div>
4
5<form method="post" action="<?= $this->url->href('ProjectViewController', 'updateIntegrations', array('project_id' => $project['id'])) ?>" autocomplete="off">
6    <?= $this->form->csrf() ?>
7
8    <?php $integrations = $this->hook->render('template:project:integrations', array('project' => $project, 'values' => $values, 'webhook_token' => $webhook_token)) ?>
9
10    <?php if (empty($integrations)): ?>
11        <p class="alert"><?= t('There is no integration registered at the moment.') ?></p>
12    <?php else: ?>
13        <?= $integrations ?>
14    <?php endif ?>
15</form>
16