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

30 lines
622 B
Plaintext
Raw Normal View History

2014-02-19 09:15:40 +02:00
<form method="POST">
{{#has_errors}}
<p class="message">При проверке формы были найдены ошибки:</p>
<ul class="errors">
{{#get_errors}}
<li>{{.}}</li>
{{/get_errors}}
</ul>
{{/has_errors}}
<div class="row">
<div class="col-md-6">
{{#controls_course}}
<h4>{{heading}}</h4>
{{#controls}}
{{{.}}}
{{/controls}}
{{/controls_course}}
</div>
<div class="col-md-6">
{{#controls_letter}}
<h4>{{heading}}</h4>
{{#controls}}
{{{.}}}
{{/controls}}
{{/controls_letter}}
</div>
</div>
{{{get_controls}}}
</form>