1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-04 23:54:25 +03:00
kangana/application/templates/course/edit.mustache

24 lines
488 B
Plaintext

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