virt2/api/mod/pril10_edit.html

43 lines
1.5 KiB
HTML
Raw Normal View History

{include file=$header h1="Зачетная ведомость по огневой подготовке" title="Зачетная ведомость по огневой подготовке"}
<form action="/act/pril10_edit" method="post" id="save_pril10_form">
<table class="table">
<tr><td>Дата</td><td><input class="form-control" name="dat" placeholder="01.01.2017"></td></tr>
<tr><td>Учебная группа</td><td>
<select name="uchgroups" class="form-control">
{section name=customer loop=$uchgroups}
{if $uchgroups[customer].id}
<option value="{$uchgroups[customer].id}" {if $sotr[0].uchgroups==$uchgroups[customer].id}selected{/if}>{$uchgroups[customer].val}</option>
{/if}
{/section}
</select>
</td></tr>
<tr><td>Вид подготовки</td><td>
<select name="vpodg" class="form-control">
{section name=customer loop=$vpodg}
{if $vpodg[customer].id}
<option value="{$vpodg[customer].id}" {if $sotr[0].vpodg==$vpodg[customer].id}selected{/if}>{$vpodg[customer].val}</option>
{/if}
{/section}
</select>
</td></tr>
<tr><td>Члены комиссии (экзаменатор)</td><td><input class="form-control" name="komissiya" placeholder="Должность, фамилия, инициалы всех членов комиссии"></td></tr>
</table>
<input type="hidden" name="act" value="add_pril10">
<button type="button" class="btn btn-outline-success" id="save_pril10">Далее <i class="fa fa-arrow-right" aria-hidden="true"></i>
</button>
</form>
{include file=$footer}