43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
#[body]#
|
|
<div class="container">
|
|
<h1>{cur_cat_name}</h1>
|
|
|
|
<div class="row">
|
|
<div class="col-12 col-lg-4">
|
|
<div class="p-2 bg-white">
|
|
<h2 class="px-3 pt-2">Дерево</h2>
|
|
<hr/>
|
|
<div class="px-2">
|
|
<b>Корень</b> [<a href="?cat={cur_cat}&act=edit&parentCat={id}" title="Подкатегория">+</a>]<br>
|
|
{rows}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-8">
|
|
<div class="p-2 bg-light h-100">
|
|
<h2 class="px-3 pt-2">Параметры объекта</h2>
|
|
<hr/>
|
|
<div>
|
|
{form}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('select.form-control').chosen();
|
|
});
|
|
</script>
|
|
#[!body]#
|
|
#[row]#
|
|
{seps}|-- <a href="?cat={cur_cat}&act=edit&id={id}" title="{access_group}">{title}</a> [<a href="?cat={cur_cat}&act=edit&parentId={id}" title="Подкатегория">+</a>]<br>
|
|
{subrows}
|
|
#[!row]#
|
|
#[sep]#
|
|
|
|
#[!sep]#
|
|
#[row_unvisible]#
|
|
{seps}|-- <a href="?cat={cur_cat}&act=edit&id={id}"><span style="color: #aaa;">{title}</span></a> [<a href="?cat={cur_cat}&act=edit&parentId={id}" title="Подкатегория">+</a>]<br>
|
|
{subrows}
|
|
#[!row_unvisible]# |