diff options
-rw-r--r-- | app/Template/project_list/project_icons.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/project_list/project_icons.php b/app/Template/project_list/project_icons.php index c7e9c4a9..348db367 100644 --- a/app/Template/project_list/project_icons.php +++ b/app/Template/project_list/project_icons.php @@ -1,4 +1,6 @@ <div class="table-list-icons"> + + <?php if ($project['is_public']): ?> <i class="fa fa-share-alt fa-fw" title="<?= t('Shared project') ?>"></i> <?php endif ?> @@ -18,6 +20,6 @@ <?php endif ?> <?php if ($project['is_active'] == 0): ?> - <i class="fa fa-ban fa-fw" aria-hidden="true" title="<?= t('Closed') ?>"></i><?= t('Closed') ?> + <i class="fa fa-ban fa-fw" aria-hidden="true" title="<?= t('Closed') ?>"></i><?= t('Closed') ?> <?php endif ?> </div> |