| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php include 'admin_header.php'; ?>
- <div class="content-wrapper">
- <section class="content-header">
- <h1>
- <?=lang::_('Dashboard')?>
- <small></small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="/admin"><i class="fa fa-heartbeat"></i> <?=lang::_('Admin')?></a></li>
- <li class="active"><?=lang::_('Dashboard')?></li>
- </ol>
- </section>
-
- <section class="content">
- <div class="row">
- <?php if ($_SESSION['admin_user']->admin_access_level != '1' && $_SESSION['admin_user']->admin_access_level != '11') : ?>
- <?php foreach ($reports as $report) : ?>
- <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-xs-12">
- <div class="box box-info">
- <div class="box-header with-border">
- <h3 class="box-title"><?=$report['hotel']?></h3>
- </div>
- <div class="box-body">
- <p>Last month: <strong><?=formatize::currency($report['last_month'])?>,- HUF</strong></p>
- <p>Actual month: <strong><?=formatize::currency($report['actual_month'])?>,- HUF</strong></p>
- </div>
- </div>
- </div>
- <?php endforeach; ?>
- <?php endif; ?>
- </div>
- </section>
- </div>
- <?php include 'admin_footer.php'; ?>
|