40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<div id="headerbar">
|
|
<h1 class="headerbar-title"><?php _trans('import_data'); ?></h1>
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6 col-md-offset-3">
|
|
|
|
<?php $this->layout->load_view('layout/alerts'); ?>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h5><?php _trans('import_from_csv'); ?></h5>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<form method="post" action="<?php echo site_url($this->uri->uri_string()); ?>">
|
|
|
|
<input type="hidden" name="_ip_csrf" value="<?= $this->security->get_csrf_hash() ?>">
|
|
|
|
<?php foreach ($files as $file) { ?>
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="files[]" value="<?php echo $file; ?>">
|
|
<?php echo $file; ?>
|
|
</label>
|
|
</div>
|
|
<?php } ?>
|
|
<input type="submit" class="btn btn-default" name="btn_submit"
|
|
value="<?php _trans('import'); ?>">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|