48 lines
2.1 KiB
HTML
Executable File
48 lines
2.1 KiB
HTML
Executable File
<form action="{$action|default:"/page_edit/{$smarty.get.id}"}" method="post" enctype='multipart/form-data' id="page-editor">
|
|
{$actionBlog}
|
|
<input type='text' name='title' class="form-control mt-3 mb-3" tabindex='1' value='{$page.title}' placeholder="Введите заголовок страницы">
|
|
|
|
<textarea tabindex='2' name='txt' id='editarea' style="height: 600px;">{$page.txt}</textarea>
|
|
{if ($smarty.get.id)}<input type='hidden' name='act' tabindex='3' value='save'>
|
|
{else}<input type='hidden' name='act' tabindex='3' value='new'>
|
|
{/if}
|
|
|
|
{if ($smarty.get.mod=='page_edit')}
|
|
|
|
<input type='text' name='description' class="form-control mt-3" tabindex='3' value='{$j.description}' placeholder="description">
|
|
|
|
<input type='text' name='keywords' class="form-control mt-3" tabindex='4' value='{$j.keywords}' placeholder="keywords">
|
|
|
|
<input type='text' name='d' class="form-control mt-3" tabindex='5' value='{if $j.d}{$j.d}{else}{$smarty.now|date_format:"%Y-%m-%d"}{/if}' placeholder="2017-12-31">
|
|
|
|
<input type='text' name='alias' class="form-control mt-3" tabindex='6' value='{$j.alias}' placeholder="ЧПУ/Алиас">
|
|
|
|
|
|
|
|
<b>Категория</b>
|
|
<select name="category" class="form-control mt-3">
|
|
<option value="0">Нет</option>
|
|
{section name=customer loop=$pages_category}
|
|
{if $pages_category[customer].id}
|
|
|
|
<option value="{$pages_category[customer].id}" {if $page.category==$pages_category[customer].id}selected{/if}>{$pages_category[customer].title}</option>
|
|
{/if}
|
|
{/section}
|
|
</select>
|
|
|
|
{/if}
|
|
<br>
|
|
<div class="form-check" style="padding-left: 15px;">
|
|
<input class="form-check-input" type="checkbox" name="status" {if ($page.status==1)}checked{/if}>
|
|
<label class="form-check-label" for="flexCheckDefault">
|
|
Публиковать?
|
|
</label>
|
|
</div>
|
|
{*if ($smarty.get.mod=='page_edit')*}
|
|
<input type='submit' value='Сохранить' tabindex='5' name="ok" class="btn btn-dark mt-3 mb-3">
|
|
|
|
{*/if*}
|
|
{*$btnSave*}
|
|
{$btnCancel}
|
|
</form>
|
|
{$editor_js} |