summaryrefslogtreecommitdiff
path: root/app/Templates
diff options
context:
space:
mode:
Diffstat (limited to 'app/Templates')
-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>