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.
48 lines
2.6 KiB
48 lines
2.6 KiB
<?php
|
|
//load language file for event
|
|
$this->lang->load('backoffice/email', 'fr');
|
|
?>
|
|
<div style="display: none;">
|
|
<div class="BO_view" id="email-configuration">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
<div id="email_reminder_main">
|
|
<table id="email_reminder_list" class="table-responsive table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%" height="200">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<!-- <th><?php //$this->lang->line("event_title")?></th> -->
|
|
<th><?=$this->lang->line("start_date_time")?></th>
|
|
<th><?=$this->lang->line("email_schedule_date")?></th>
|
|
<th><?=$this->lang->line("email_schedule_status")?></th>
|
|
<th><?=$this->lang->line("email_schedule_author")?></th>
|
|
<th class="actions"><?=$this->lang->line("actions")?></th>
|
|
<th><?=$this->lang->line("email_schedule_date_added")?></th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modal for Events -->
|
|
<div id="remote_form" style="display:none;">
|
|
<form role="form" data-toggle="validator" novalidate="novalidate" action="javascript:;" id="emailReminderForm">
|
|
<!-- Modal content-->
|
|
<div class="panel">
|
|
<div class="form-group lm-date">
|
|
<label for="email_schedule_date" class="control-label"><?=$this->lang->line("email_schedule_date")?> </label>
|
|
<div class='input-group' id='event_opening_date_icon'>
|
|
<input type='text' class="form-control datetimepicker invalid_date" id="email_schedule_date" name="email_schedule_date" placeholder="<?=$this->lang->line("email_schedule_date")?>"/>
|
|
<span class="input-group-addon">
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|