You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{extends "layout_view.tpl"}
|
|
|
|
|
|
{block name="title"}
|
|
|
{title}{$title}{/title}
|
|
|
{/block}
|
|
|
|
|
|
{block name="content"}
|
|
|
<form class="no-ajax inline-edit-dialog" method="post" action="{service controller=edit action=inline_dialog}">
|
|
|
{foreach $fields as $field}
|
|
|
<div class="mb-3 row">
|
|
|
<label>{$field.label|escape}</label>
|
|
|
{$field.field}
|
|
|
</div>
|
|
|
{/foreach}
|
|
|
<div class="submit">
|
|
|
<button class="btn btn-primary">{tr}Save{/tr}</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
{/block}
|