summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-07 19:41:05 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-07 19:41:05 -0400
commit50634c60f415d68fd30cad58366f5739b2519b7e (patch)
tree745ae03359508eff001c1d0288fd66888c7e6826 /app
parentf9e4915d756ef4cc929cf0f31fd373f9e527ab7b (diff)
Add icon for shared board on the project list
Diffstat (limited to 'app')
-rw-r--r--app/Templates/project_index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Templates/project_index.php b/app/Templates/project_index.php
index 044ab95f..b575e958 100644
--- a/app/Templates/project_index.php
+++ b/app/Templates/project_index.php
@@ -18,8 +18,11 @@
<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"></i>
+ <i class="fa fa-lock fa-fw"></i>
<?php endif ?>
<?= Helper\a(Helper\escape($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
</li>