46 lines
1.3 KiB
HTML
46 lines
1.3 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><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>
|
|
$('#module').change(function() {
|
|
$.get('?cat={cur_cat}&act=getVars&mname=' + $('#module').val(), function(data) {
|
|
$('#for_vals').html(data);
|
|
});
|
|
});
|
|
$('#module').parent().append( '<div id="for_vals" class="alert alert-light text-primary p-1 small mt-1 text-monospace"></div>' );
|
|
</script>
|
|
#[!body]#
|
|
#[row]#
|
|
{seps}|-- <a href="?cat={cur_cat}&act=edit&id={id}" title="{access_group}">{cat_name}</a> [<a href="?cat={cur_cat}&act=edit&parentCat={cat_id}" title="Подкатегория">+</a>]<br>
|
|
{subrows}
|
|
#[!row]#
|
|
#[sep]#
|
|
|
|
#[!sep]#
|
|
#[row_unvisible]#
|
|
{seps}|--<a href="?cat={cur_cat}&act=edit&id={id}"><span style="color: #aaa;">{cat_name}</span></a> [<a href="?cat={cur_cat}&act=edit&parentCat={cat_id}" title="Подкатегория">+</a>]<br>
|
|
{subrows}
|
|
#[!row_unvisible]# |