summaryrefslogtreecommitdiff
path: root/app/Template/project/index.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-01 21:23:46 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-01 21:23:46 -0500
commit50a9e2ba7db6a155cee75771d73c584d721cf687 (patch)
treecf985e7050b9293e2ec4b13d40689a4a0b10644f /app/Template/project/index.php
parent67eae33fb88e840047a33558de56090d8bcc62fb (diff)
Move project templates to a subfolder
Diffstat (limited to 'app/Template/project/index.php')
-rw-r--r--app/Template/project/index.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/app/Template/project/index.php b/app/Template/project/index.php
new file mode 100644
index 00000000..6c04449e
--- /dev/null
+++ b/app/Template/project/index.php
@@ -0,0 +1,48 @@
+<section id="main">
+ <div class="page-header">
+ <ul>
+ <?php if (Helper\is_admin()): ?>
+ <li><i class="fa fa-plus fa-fw"></i><?= Helper\a(t('New project'), 'project', 'create') ?></li>
+ <?php endif ?>
+ <li><i class="fa fa-lock fa-fw"></i><?= Helper\a(t('New private project'), 'project', 'create', array('private' => 1)) ?></li>
+ </ul>
+ </div>
+ <section>
+ <?php if (empty($active_projects) && empty($inactive_projects)): ?>
+ <p class="alert"><?= t('No project') ?></p>
+ <?php else: ?>
+
+ <?php if (! empty($active_projects)): ?>
+ <h3><?= t('Active projects') ?></h3>
+ <ul class="project-listing">
+ <?php foreach ($active_projects as $project): ?>
+ <li>
+ <?php if ($project['is_public']): ?>
+ <i class="fa fa-share-alt fa-fw"></i>
+ <?php endif ?>
+ <?php if ($project['is_private']): ?>
+ <i class="fa fa-lock fa-fw"></i>
+ <?php endif ?>
+ <?= Helper\a(Helper\escape($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endforeach ?>
+ </ul>
+ <?php endif ?>
+
+ <?php if (! empty($inactive_projects)): ?>
+ <h3><?= t('Inactive projects') ?></h3>
+ <ul class="project-listing">
+ <?php foreach ($inactive_projects as $project): ?>
+ <li>
+ <?php if ($project['is_private']): ?>
+ <i class="fa fa-lock"></i>
+ <?php endif ?>
+ <?= Helper\a(Helper\escape($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endforeach ?>
+ </ul>
+ <?php endif ?>
+
+ <?php endif ?>
+ </section>
+</section> \ No newline at end of file