diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-07 19:41:05 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-07 19:41:05 -0400 |
commit | 50634c60f415d68fd30cad58366f5739b2519b7e (patch) | |
tree | 745ae03359508eff001c1d0288fd66888c7e6826 | |
parent | f9e4915d756ef4cc929cf0f31fd373f9e527ab7b (diff) |
Add icon for shared board on the project list
-rw-r--r-- | app/Templates/project_index.php | 5 |
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> |