Improve project page titles

This commit is contained in:
Frederic Guillot
2016-07-24 13:55:35 -04:00
parent a3b4b25df2
commit 9d6715ddc0
10 changed files with 36 additions and 18 deletions

View File

@@ -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">

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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) ?>

View File

@@ -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>

View File

@@ -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')): ?>