2014-05-14 23:24:20 +10:00
|
|
|
<div class="scoreboard">
|
|
|
|
<div data-control="toolbar">
|
|
|
|
<div class="scoreboard-item title-value">
|
|
|
|
<h4><?= e(trans('system::lang.project.name')) ?></h4>
|
2014-11-01 11:38:41 +11:00
|
|
|
<?php if ($projectId): ?>
|
|
|
|
<p class="oc-icon-chain"><?= $projectName ?></p>
|
2014-05-14 23:24:20 +10:00
|
|
|
<p class="description">
|
2014-11-01 11:38:41 +11:00
|
|
|
<?= e(trans('system::lang.project.owner_label')) ?>: <?= $projectOwner ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
(<a
|
|
|
|
href="javascript:;"
|
2014-05-21 10:43:43 +10:00
|
|
|
data-request-confirm="<?= e(trans('system::lang.project.detach_confirm')) ?>"
|
2014-05-14 23:24:20 +10:00
|
|
|
data-request="onDetachProject"
|
2014-05-21 10:43:43 +10:00
|
|
|
data-stripe-load-indicator><?= e(trans('system::lang.project.detach')) ?></a>)
|
2014-05-14 23:24:20 +10:00
|
|
|
</p>
|
|
|
|
<?php else: ?>
|
2014-05-15 22:23:29 +02:00
|
|
|
<p class="oc-icon-chain-broken"><?= e(trans('system::lang.project.none')) ?></p>
|
2014-05-14 23:24:20 +10:00
|
|
|
<p class="description">
|
|
|
|
<a
|
|
|
|
href="javascript:;"
|
|
|
|
data-control="popup"
|
|
|
|
data-handler="onLoadProjectForm">
|
2014-05-15 22:23:29 +02:00
|
|
|
<?= e(trans('system::lang.project.attach')) ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
2015-02-21 15:09:39 +11:00
|
|
|
<div class="scoreboard-item title-value">
|
|
|
|
<h4><?= e(trans('system::lang.updates.plugins')) ?></h4>
|
|
|
|
<p><?= $pluginsCount ?></p>
|
|
|
|
<p class="description">
|
2016-01-24 14:23:58 -02:00
|
|
|
<?= e(trans('system::lang.updates.disabled')) ?>: <?= $pluginsCount - $pluginsActiveCount ?>
|
2015-02-21 15:09:39 +11:00
|
|
|
</p>
|
|
|
|
</div>
|
2014-11-01 11:38:41 +11:00
|
|
|
<?php if ($coreBuild): ?>
|
|
|
|
<div class="scoreboard-item title-value">
|
2015-07-11 15:29:20 +10:00
|
|
|
<h4><?= e(trans('system::lang.updates.core_current_build')) ?></h4>
|
2014-11-01 11:38:41 +11:00
|
|
|
<p><?= $coreBuild ?></p>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
2014-05-14 23:24:20 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= $this->listRender() ?>
|