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