diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-01 21:23:46 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-01 21:23:46 -0500 |
commit | 50a9e2ba7db6a155cee75771d73c584d721cf687 (patch) | |
tree | cf985e7050b9293e2ec4b13d40689a4a0b10644f /app/Template/project/show.php | |
parent | 67eae33fb88e840047a33558de56090d8bcc62fb (diff) |
Move project templates to a subfolder
Diffstat (limited to 'app/Template/project/show.php')
-rw-r--r-- | app/Template/project/show.php | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/Template/project/show.php b/app/Template/project/show.php new file mode 100644 index 00000000..907d1b70 --- /dev/null +++ b/app/Template/project/show.php @@ -0,0 +1,66 @@ +<div class="page-header"> + <h2><?= t('Summary') ?></h2> +</div> +<ul class="listing"> + <li><strong><?= $project['is_active'] ? t('Active') : t('Inactive') ?></strong></li> + + <?php if ($project['is_private']): ?> + <li><i class="fa fa-lock"></i> <?= t('This project is private') ?></li> + <?php endif ?> + + <?php if ($project['is_public']): ?> + <li><i class="fa fa-share-alt"></i> <?= Helper\a(t('Public link'), 'board', 'readonly', array('token' => $project['token'])) ?></li> + <li><i class="fa fa-rss-square"></i> <?= Helper\a(t('RSS feed'), 'project', 'feed', array('token' => $project['token'])) ?></li> + <?php else: ?> + <li><?= t('Public access disabled') ?></li> + <?php endif ?> + + <?php if ($project['last_modified']): ?> + <li><?= dt('Last modified on %B %e, %Y at %k:%M %p', $project['last_modified']) ?></li> + <?php endif ?> + + <?php if ($stats['nb_tasks'] > 0): ?> + + <?php if ($stats['nb_active_tasks'] > 0): ?> + <li><?= Helper\a(t('%d tasks on the board', $stats['nb_active_tasks']), 'board', 'show', array('project_id' => $project['id'])) ?></li> + <?php endif ?> + + <?php if ($stats['nb_inactive_tasks'] > 0): ?> + <li><?= Helper\a(t('%d closed tasks', $stats['nb_inactive_tasks']), 'project', 'tasks', array('project_id' => $project['id'])) ?></li> + <?php endif ?> + + <li><?= t('%d tasks in total', $stats['nb_tasks']) ?></li> + + <?php else: ?> + <li><?= t('No task for this project') ?></li> + <?php endif ?> +</ul> + +<div class="page-header"> + <h2><?= t('Board') ?></h2> +</div> +<table class="table-stripped"> + <tr> + <th width="50%"><?= t('Column') ?></th> + <th><?= t('Task limit') ?></th> + <th><?= t('Active tasks') ?></th> + </tr> + <?php foreach ($stats['columns'] as $column): ?> + <tr> + <td><?= Helper\escape($column['title']) ?></td> + <td><?= $column['task_limit'] ?: '∞' ?></td> + <td><?= $column['nb_active_tasks'] ?></td> + </tr> + <?php endforeach ?> +</table> + +<?php if (Helper\is_admin()): ?> +<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" readonly="readonly" value="<?= Helper\get_current_base_url().Helper\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 ?> |