Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,15 @@
<div class="col-md-8">
<?php endif; ?>
<?php if (empty($this->items)) : ?>
<div class="bg-light p-3 rounded">
<h2><?php echo Text::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE'); ?></h2>
<p><?php echo Text::_('COM_POSTINSTALL_LBL_NOMESSAGES_DESC'); ?></p>
<a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.reset&eid=' . $this->eid . '&' . $this->token . '=1'); ?>" class="btn btn-warning btn-lg">
<span class="icon-eye" aria-hidden="true"></span>
<?php echo Text::_('COM_POSTINSTALL_BTN_RESET'); ?>
</a>
<div class="py-5 text-center">
<span class="fa-8x icon-generic mb-4" aria-hidden="true"></span>
<h1 class="display-5 fw-bold"><?php echo Text::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE'); ?></h1>
<div>
<p class="lead mb-4">
<?php echo Text::_('COM_POSTINSTALL_LBL_NOMESSAGES_DESC'); ?>
</p>
<a href="<?php echo Route::_('index.php?option=com_postinstall&view=messages&task=message.reset&eid=' . $this->eid . '&' . $this->token . '=1'); ?>" class="btn btn-primary btn-lg px-4 me-sm-3"><?php echo Text::_('COM_POSTINSTALL_BTN_RESET'); ?></a>
</div>
</div>
<?php else : ?>
<?php foreach ($this->items as $item) : ?>
Expand Down