You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
3.3 KiB

<div id="reservations-box">
<!-- Left Panel -->
<div class="col-md-5">
<h2 class="reservations-filter-title"><?= $this->lang->line('my_reservations'); ?></h2>
<div class="reservations-filter-box col-md-18">
<div class="reservations-filter col-md-17">
<label class="filter-label"><?= $this->lang->line('filter_by_month'); ?></label>
<select class="form-control filter-select" id="filter-month" name="month">
<option value="0"><?=$this->lang->line("all_months");?></option>
<option value="1"><?=$this->lang->line("january");?></option>
<option value="2"><?=$this->lang->line("february");?></option>
<option value="3"><?=$this->lang->line("march");?></option>
<option value="4"><?=$this->lang->line("april");?></option>
<option value="5"><?=$this->lang->line("may");?></option>
<option value="6"><?=$this->lang->line("june");?></option>
<option value="7"><?=$this->lang->line("july");?></option>
<option value="8"><?=$this->lang->line("august");?></option>
<option value="9"><?=$this->lang->line("september");?></option>
<option value="10"><?=$this->lang->line("october");?></option>
<option value="11"><?=$this->lang->line("november");?></option>
<option value="12"><?=$this->lang->line("december");?></option>
</select>
</div>
<div class="reservations-filter col-md-17">
<label class="filter-label"><?=$this->lang->line("filter_by_city")?></label>
<select class="form-control filter-select" id="filter-city" name="city" onchange="events._change_hash();">
<option value="0"><?=$this->lang->line("all_cities");?></option>
<?php foreach($event_city as $row) { ?>
<option value="<?= $row->city_location_id; ?>"><?php echo $row->city; ?></option>
<?php } ?>
</select>
</div>
<div class="reservations-filter col-md-17">
<label class="filter-label"><?= $this->lang->line('filter_by_type'); ?></label>
<ul id="preferences_box" class="reservations-filter-checkbox preference-col col-md-18">
<li>
<input type="checkbox" name="preference[]" id="all_events" class="" value="0" checked>
<label><?=$this->lang->line("all");?></label>
</li>
<?php foreach($event_type as $row) { ?>
<li>
<input type="checkbox" name="preference[]" id="<?php echo $row->event_type; ?>" value="<?= $row->event_type_id; ?>">
<label for="preference[]"><?php echo $row->event_type; ?></label><br>
</li>
<?php } ?>
</ul>
</div>
</div>
</div>
<!-- Right Panel -->
<div class="col-md-13">
<!-- <h2 class=""><?= $this->lang->line('change_bookings') ?></h2> -->
<h2 class="reservations-filter-title2"><?= $this->lang->line('change_bookings') ?></h2>
<table class="reservations-table col-md-18">
<tr>
<td class="reservation-event-title col-md-10">--</td>
<td class="reservation-status col-md-4">--</td>
<td class="reservation-date col-md-2">--</td>
<td class="reservation-hour col-md-2">--</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="editor"></div>