diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-10 23:12:38 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-10 23:12:38 -0400 |
commit | a0227cad69aff9486fba1d7b2a19e6da97450100 (patch) | |
tree | e4585be087759022b8a3d0108eacff3494da470e /app/Template/project_role | |
parent | 44f680cf2f1463721eb5bdb7eda4d3b339e63ba9 (diff) |
Define only what is allowed for column restrictions
Diffstat (limited to 'app/Template/project_role')
-rw-r--r-- | app/Template/project_role/show.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/Template/project_role/show.php b/app/Template/project_role/show.php index 2114a1c9..5fbd413b 100644 --- a/app/Template/project_role/show.php +++ b/app/Template/project_role/show.php @@ -16,7 +16,7 @@ <tr> <th> <div class="dropdown"> - <a href="#" class="dropdown-menu"><?= t('Column restrictions for the role "%s"', $role['role']) ?> <i class="fa fa-caret-down"></i></a> + <a href="#" class="dropdown-menu"><?= t('Restrictions for the role "%s"', $role['role']) ?> <i class="fa fa-caret-down"></i></a> <ul> <li> <i class="fa fa-plus fa-fw" aria-hidden="true"></i> @@ -41,10 +41,7 @@ <?php foreach ($role['restrictions'] as $restriction): ?> <tr> <td> - <i class="fa fa-ban fa-fw" aria-hidden="true"></i> - <?= $this->text->e($restriction['src_column_title']) ?> - <i class="fa fa-arrow-right fa-fw" aria-hidden="true"></i> - <?= $this->text->e($restriction['dst_column_title']) ?> + <?= t('Moving task from the column "%s" to "%s" is permitted', $restriction['src_column_title'], $restriction['dst_column_title']) ?> </td> <td> <i class="fa fa-trash-o fa-fw" aria-hidden="true"></i> |