| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php include 'admin_header.php'; ?>
- <div class="content-wrapper">
- <section class="content-header">
- <h1>
- <?=lang::_('QR codes')?>
- <small><?=lang::_('Hotel QR codes')?></small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="/admin"><i class="fa fa-users"></i> <?=lang::_('Admin')?></a></li>
- <li class="active"><?=lang::_('Hotel QR codes')?></li>
- </ol>
- </section>
-
- <section class="content">
-
- <div class="box box-info">
- <div class="box-header with-border">
- <h3 class="box-title"><?=lang::_('Hotel QR codes')?></h3>
- <div class="box-tools pull-right">
- <button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
- </div>
- </div>
- <div class="box-body">
- <div class="row">
- <table class="table table-bordered table-hover dataTable table-striped data-list">
- <thead>
- <tr>
- <th><?=lang::_('Hotel name')?></th>
- <th><?=lang::_('Hotel URL')?></th>
- <th> </th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($hotels as $hotel) : ?>
- <tr>
- <td><?=$hotel['value']?></td>
- <td>https://openshop.urbanms.hu/hotel/<?=$hotel['key']?></td>
- <td>
- <button type="button" onclick="window.open('/qrcode.php?s=qr&d=https://openshop.urbanms.hu/hotel/<?=$hotel['key']?>&sf=8')" class="btn btn-flat btn-xs btn-success"><i class="fa fa-qrcode"></i></button>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- <tfoot>
- <tr>
- <th><?=lang::_('Hotel name')?></th>
- <th><?=lang::_('Hotel URL')?></th>
- <th> </th>
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
- </div>
-
- </section>
- </div>
- <?php include 'admin_footer.php'; ?>
|