Файл: Luxe-Shop v6.0/application/views/admin/templatesadm/default/categories/edit.php
Строк: 19
<style>
#cont {
width:830px;
}
</style>
<div id="cont"><div style="font-size:14px;"><? echo empty($categories->id) ? 'Добавить категорию' : 'Изменить категорию: ' . $categories->title; ?></div>
<? echo !empty($errors) ? $errors : "" ; ?>
<? echo validation_errors(); ?>
<? echo form_open_multipart();?>
<table style="margin-top:10px;width:830px;"class="table">
<tr>
<td>Название:</td>
<td><? echo form_input('title', set_value('title', $categories->title),'class="form-control"'); ?></td>
</tr>
<input type='hidden' name='slug' value='chesnost.ru'>
<tr>
<td>Расположение:</td>
<td><? echo form_input('sort', set_value('sort', $categories->sort),'class="form-control" '); ?></td>
</tr>
<? $list = array('1' => 'Показывать','0' => 'Не показывать',);?>
<tr>
<td>Отображение на сайте:</td>
<td><?php echo form_dropdown('show', $list, $categories->show,'class="form-control" '); ?></td>
</tr>
<tr>
<td></td>
<td><? echo form_submit('submit','Сохранить','class="btn btn-primary"'); ?></td>
</tr>
</table></div>
<? echo form_close(); ?>