Improve project page titles
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Compare Estimated Time vs Actual Time') ?></h2>
|
||||
<h2><?= t('Estimated vs actual time') ?></h2>
|
||||
</div>
|
||||
|
||||
<div class="listing">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Subtasks exportation for "%s"', $project['name']) ?></h2>
|
||||
<h2><?= t('Subtasks export') ?></h2>
|
||||
</div>
|
||||
|
||||
<p class="alert alert-info"><?= t('This report contains all subtasks information for the given date range.') ?></p>
|
||||
@@ -21,4 +21,4 @@
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-blue"><?= t('Execute') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Daily project summary export for "%s"', $project['name']) ?></h2>
|
||||
<h2><?= t('Daily project summary export') ?></h2>
|
||||
</div>
|
||||
|
||||
<p class="alert alert-info"><?= t('This export contains the number of tasks per column grouped per day.') ?></p>
|
||||
@@ -21,4 +21,4 @@
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-blue"><?= t('Execute') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Tasks exportation for "%s"', $project['name']) ?></h2>
|
||||
<h2><?= t('Tasks exportation') ?></h2>
|
||||
</div>
|
||||
|
||||
<p class="alert alert-info"><?= t('This report contains all tasks information for the given date range.') ?></p>
|
||||
@@ -21,4 +21,4 @@
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-blue"><?= t('Execute') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<?= $this->url->link('K<span>B</span>', 'DashboardController', 'show', array(), false, '', t('Dashboard')) ?>
|
||||
</span>
|
||||
<span class="title">
|
||||
<?php if (isset($project) && ! empty($project)): ?>
|
||||
<?php if (! empty($project) && ! empty($task)): ?>
|
||||
<?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
|
||||
<?php else: ?>
|
||||
<?= $this->text->e($title) ?>
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<div class="sidebar sidebar-icons">
|
||||
<h2><?= t('Task #%d', $task['id']) ?></h2>
|
||||
<div class="sidebar-title">
|
||||
<h2><?= t('Task #%d', $task['id']) ?></h2>
|
||||
</div>
|
||||
<ul>
|
||||
<li <?= $this->app->checkMenuSelection('TaskViewController', 'show') ?>>
|
||||
<i class="fa fa-newspaper-o fa-fw"></i>
|
||||
@@ -28,7 +30,9 @@
|
||||
</ul>
|
||||
|
||||
<?php if ($this->user->hasProjectAccess('TaskModificationController', 'edit', $task['project_id'])): ?>
|
||||
<h2><?= t('Actions') ?></h2>
|
||||
<div class="sidebar-title">
|
||||
<h2><?= t('Actions') ?></h2>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<i class="fa fa-pencil-square-o fa-fw"></i>
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<div class="sidebar">
|
||||
<div class="sidebar-title">
|
||||
<h2><?= t('Information') ?></h2>
|
||||
</div>
|
||||
<ul>
|
||||
<?php if ($this->user->hasAccess('UserViewController', 'show')): ?>
|
||||
<li <?= $this->app->checkMenuSelection('UserViewController', 'show') ?>>
|
||||
@@ -34,7 +37,12 @@
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->hook->render('template:user:sidebar:information', array('user' => $user)) ?>
|
||||
</ul>
|
||||
|
||||
<div class="sidebar-title">
|
||||
<h2><?= t('Actions') ?></h2>
|
||||
</div>
|
||||
<ul>
|
||||
<?php if ($this->user->isAdmin() || $this->user->isCurrentUser($user['id'])): ?>
|
||||
|
||||
<?php if ($this->user->hasAccess('UserModificationController', 'show')): ?>
|
||||
|
||||
Reference in New Issue
Block a user