diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/project/integrations.php | 15 | ||||
-rw-r--r-- | app/Template/project/show.php | 11 | ||||
-rw-r--r-- | app/Template/project/sidebar.php | 3 |
3 files changed, 18 insertions, 11 deletions
diff --git a/app/Template/project/integrations.php b/app/Template/project/integrations.php new file mode 100644 index 00000000..8ec43f90 --- /dev/null +++ b/app/Template/project/integrations.php @@ -0,0 +1,15 @@ +<div class="page-header"> + <h2><?= t('Integration with third-party services') ?></h2> +</div> + +<h3><i class="fa fa-github fa-fw"></i> <?= t('Github webhooks') ?></h3> +<div class="listing"> +<input type="text" class="auto-select" readonly="readonly" value="<?= $this->getCurrentBaseUrl().$this->u('webhook', 'github', array('token' => $webhook_token, 'project_id' => $project['id'])) ?>"/><br/> +<p class="form-help"><a href="http://kanboard.net/documentation/github-webhooks" target="_blank"><?= t('Help on Github webhooks') ?></a></p> +</div> + +<h3><i class="fa fa-git fa-fw"></i> <?= t('Gitlab webhooks') ?></h3> +<div class="listing"> +<input type="text" class="auto-select" readonly="readonly" value="<?= $this->getCurrentBaseUrl().$this->u('webhook', 'gitlab', array('token' => $webhook_token, 'project_id' => $project['id'])) ?>"/><br/> +<p class="form-help"><a href="http://kanboard.net/documentation/gitlab-webhooks" target="_blank"><?= t('Help on Gitlab webhooks') ?></a></p> +</div>
\ No newline at end of file diff --git a/app/Template/project/show.php b/app/Template/project/show.php index 22d710e6..bc622d0d 100644 --- a/app/Template/project/show.php +++ b/app/Template/project/show.php @@ -53,14 +53,3 @@ </tr> <?php endforeach ?> </table> - -<?php if ($this->acl->isAdminUser()): ?> -<div class="page-header"> - <h2><?= t('Integration') ?></h2> -</div> - -<h3><i class="fa fa-github fa-fw"></i><?= t('Github webhook') ?></h3> -<input type="text" class="auto-select" readonly="readonly" value="<?= $this->getCurrentBaseUrl().$this->u('webhook', 'github', array('token' => $webhook_token, 'project_id' => $project['id'])) ?>"/><br/> -<p class="form-help"><a href="http://kanboard.net/documentation/github-webhooks" target="_blank"><?= t('Help on Github webhook') ?></a></p> - -<?php endif ?> diff --git a/app/Template/project/sidebar.php b/app/Template/project/sidebar.php index 35019fdb..52a971d6 100644 --- a/app/Template/project/sidebar.php +++ b/app/Template/project/sidebar.php @@ -10,6 +10,9 @@ <?= $this->a(t('Public access'), 'project', 'share', array('project_id' => $project['id'])) ?> </li> <li> + <?= $this->a(t('Integrations'), 'project', 'integration', array('project_id' => $project['id'])) ?> + </li> + <li> <?= $this->a(t('Edit project'), 'project', 'edit', array('project_id' => $project['id'])) ?> </li> <?php endif ?> |