Added Date column for builds table in project page.

This commit is contained in:
corpsee 2015-02-28 23:38:56 +06:00
parent da9be4930d
commit 9f53471186
12 changed files with 12 additions and 0 deletions

View file

@ -126,6 +126,7 @@ i din foretrukne hosting-platform.',
'all_branches' => 'Alle branches',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Projekt',
'commit' => 'Commit',
'branch' => 'Branch',

View file

@ -127,6 +127,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'all_branches' => 'Alle Branches',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Projekt',
'commit' => 'Commit',
'branch' => 'Branch',

View file

@ -127,6 +127,7 @@ PHPCI',
'all_branches' => 'Όλες οι διακλαδώσεις',
'builds' => 'Κατασκευές',
'id' => 'Αριθμός αναγνώρισης',
'date' => 'Date',
'project' => 'Έργο',
'commit' => 'Συνεισφορά',
'branch' => 'Διακλάδωση',

View file

@ -128,6 +128,7 @@ PHPCI',
'all_branches' => 'All Branches',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Project',
'commit' => 'Commit',
'branch' => 'Branch',

View file

@ -127,6 +127,7 @@ PHPCI',
'all_branches' => 'Toutes les branches',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Projet',
'commit' => 'Commit',
'branch' => 'Branche',

View file

@ -127,6 +127,7 @@ PHPCI',
'all_branches' => 'Tutti i Branche',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Progetto',
'commit' => 'Commit',
'branch' => 'Branch',

View file

@ -127,6 +127,7 @@ van je gekozen source code hosting platform',
'all_branches' => 'Alle brances',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Project',
'commit' => 'Commit',
'branch' => 'Branch',

View file

@ -128,6 +128,7 @@ od wybranego kodu źródłowego platformy hostingowej.',
'all_branches' => 'Wszystkie Gałęzie',
'builds' => 'Budowania',
'id' => 'ID',
'date' => 'Date',
'project' => 'Projekt',
'commit' => 'Commit',
'branch' => 'Gałąź',

View file

@ -126,6 +126,7 @@ PHPCI',
'all_branches' => 'Все ветки',
'builds' => 'Сборки',
'id' => 'ID',
'date' => 'Дата',
'project' => 'Проект',
'commit' => 'Коммит',
'branch' => 'Ветка',

View file

@ -126,6 +126,7 @@ PHPCI',
'all_branches' => 'Усі гілки',
'builds' => 'Збірки',
'id' => 'ID',
'date' => 'Дата',
'project' => 'Проект',
'commit' => 'Комміт',
'branch' => 'Гілка',

View file

@ -39,6 +39,7 @@ switch($build->getStatus())
?>
<tr class="<?php print $cls; ?>">
<td><a href="<?php echo PHPCI_URL ?>build/view/<?php print $build->getId(); ?>">#<?php print str_pad($build->getId(), 6, '0', STR_PAD_LEFT); ?></a></td>
<td><?php print $build->getCreated()->format('Y-m-d H:i:s'); ?></td>
<td><a href="<?php echo PHPCI_URL ?>project/view/<?php print $build->getProjectId(); ?>">
<?php
if (is_object($build->getProject())) {

View file

@ -42,6 +42,7 @@
<thead>
<tr>
<th><?php Lang::out('id'); ?></th>
<th><?php Lang::out('date'); ?></th>
<th><?php Lang::out('project'); ?></th>
<th class="hidden-md hidden-sm hidden-xs"><?php Lang::out('commit'); ?></th>
<th><?php Lang::out('branch'); ?></th>