1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/templates/edit.mustache

23 lines
466 B
Plaintext

<form method="POST">
{{#has_errors}}
<p class="message">При проверке формы были найдены ошибки:</p>
<ul class="errors">
{{#get_errors}}
<li>{{.}}</li>
{{/get_errors}}
</ul>
{{/has_errors}}
{{{get_controls}}}
</form>
{{#preview}}
<h2>Предпросмотр</h2>
<hr>
<div class="hyphenate" id="preview">
{{{preview}}}
</div>
<hr>
{{/preview}}
{{^preview}}
<div class="hyphenate" id="preview"></div>
{{/preview}}