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.
23 lines
800 B
23 lines
800 B
<!--
|
|
* Plugin reference
|
|
* https://www.jqueryscript.net/demo/jQuery-Multiple-Select-Plugin-For-Bootstrap-Bootstrap-Multiselect/
|
|
-->
|
|
|
|
<div class="row">
|
|
<div class="panel panel-info" style="padding-bottom:0px;">
|
|
<div class="panel-heading">
|
|
<strong>Remarque</strong> : Please click the button and select similar events.
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-12 col-md-12">
|
|
<div class="form-group" id="similar-event-container">
|
|
<!-- <select class="form-control" id="similar-field" name="similar-field" multiple="multiple">
|
|
<?php
|
|
foreach($similar_events as $item) {
|
|
echo '<option value="'.$item->event_id.'">' .$item->title. ' ['.$item->workshop_author .']</option>';
|
|
}
|
|
?>
|
|
</select> -->
|
|
</div>
|
|
</div>
|
|
</div>
|