43 lines
1.7 KiB
HTML
43 lines
1.7 KiB
HTML
<div class="report-widget widget-activetheme">
|
|
<h3><?= e(trans($this->property('title'))) ?></h3>
|
|
|
|
<?php if (!isset($error)): ?>
|
|
<div class="theme-thumbnail">
|
|
<img src="<?= $theme->getPreviewImageUrl() ?>" alt="" class="img-responsive" />
|
|
</div>
|
|
<ul class="list-inline">
|
|
<li>
|
|
<a href="<?= Backend::url('system/settings/update/october/cms/maintenance_settings') ?>">
|
|
<?php if ($inMaintenance): ?>
|
|
<i class="icon-circle warning"></i>
|
|
<span class="text-warning">
|
|
<?= e(trans('cms::lang.dashboard.active_theme.maintenance')) ?>
|
|
</span>
|
|
<?php else: ?>
|
|
<i class="icon-circle success"></i>
|
|
<span class="text-success">
|
|
<?= e(trans('cms::lang.dashboard.active_theme.online')) ?>
|
|
</span>
|
|
<?php endif ?>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<?= Backend::url('cms/themes') ?>">
|
|
<?= e(trans('cms::lang.dashboard.active_theme.manage_themes')) ?>
|
|
</a>
|
|
</li>
|
|
<?php if ($theme->hasCustomData()): ?>
|
|
<li>
|
|
<a href="<?= Backend::url('cms/themes/update/'.$theme->getDirName()) ?>">
|
|
<?= e(trans('cms::lang.theme.customize_theme')) ?>
|
|
</a>
|
|
</li>
|
|
<?php endif ?>
|
|
</ul>
|
|
<?php else: ?>
|
|
<div class="callout callout-warning">
|
|
<div class="content"><?= e($error) ?></div>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|