EIOS/tpl/tpl_teacher_grupp_transport...

86 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- BEGIN PAGE HEADER-->
<div class="row-fluid">
<div class="span12">
<h3 class="page-title">Группы - перевод студентов</h3>
<ul class="breadcrumb">
<li><a href="/">Главная</a><span class="divider">/</span></li>
<li class="active"><a href="/teach/grupp/">Обучать - группы</a></li>
</ul>
</div>
</div>
{$debug}
{if isset($tmsg.msg)}
<div class="alert alert-success">
<button data-dismiss="alert" class="close">×</button>
<strong>Успешно!</strong> {$tmsg.msg}
</div>
{/if}
{if count($tmsg.err)}{foreach from=$tmsg.err item=er}
<div class="alert alert-error">
<button data-dismiss="alert" class="close">×</button>
<strong>Ошибка!</strong> {$er}
</div>
{/foreach}{/if}
<div class="row-fluid">
<form method="POST">
<div class="span6">
<table class="table table-striped table-bordered table-advance table-hover">
<thead>
<tr>
<th width="20%">Даты студента</th>
<th width="20%">Даты пользователя</th>
<th width="15%">Статус студента</th>
<th width="35%">Номер зачетки/Номер студен.</th>
<th width="10%">Номер группы</th>
<th width="10%">ФИО</th>
<th width="10%"><i class=" icon-edit"></i> </th>
</tr>
</thead>
<tbody>
{foreach from=$students item=st}
<tr>
<td>{$st.sdata_c}<br>{$st.sdata_u}</td>
<td>{$st.udata_c}<br>{$st.udata_u}</td>
<td>{$st.sstatus}</td>
<td><b>{$st.snum_zach}</b>/{$st.snum_stud}</td>
<td>{$st.snum_grupp}</td>
<td>{$st.ufio}</td>
<td nowarp>
<input type="CHECKBOX" name="pere_st[{$st.uid}]" value="{$st.uid}" {if $st.perevod=="1"}CHECKED{/if}>
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
<div class="span6">
<h3>Выбранная группа id={$grupp.id} {$grupp.sokr}-{$grupp.kurs} {$grupp.fo}</h3>
<p>Дата создания: {$grupp.data_c}</p>
<p>Дата обновления: {$grupp.data_u}</p>
<p>Имя: {$grupp.name}</p>
<p>Описание: {$grupp.descrip}</p>
<p>Специальность: {$grupp.specialnost}</p>
<p>Курс: {$grupp.kurs}</p>
<p>Сокращенное: {$grupp.sokr}</p>
<p>Форма обучения: {$grupp.fo}</p>
<hR>
<p>Слева Вам необходимо выбрать студентов которых надо перенести в другую группу! Смотрите на даты студента - это когда была создана заявка на студента и когда она изменилась и даты пользователя, это когда был создан пользователь и когда изменили пользователя.</p>
<p>После выбора студентов выберите группу в которую надо перевести выбранных студентов и сохарните результат.</p>
<div class="control-group">
<label class="control-label">Выбор группы</label>
<div class="controls">
<select class="span12" data-placeholder="Выбор группы" tabindex="1" name="id_grupp">
<option value="0">Выберите</option>
{foreach from=$grupps item=gp}
<option value="{$gp.id}">{$gp.sokr}-{$gp.kurs} {$gp.fo} Студентов: {$gp.kol}</option>
{/foreach}
</select>
</div>
</div>
<div class="form-actions">
<input type="HIDDEN" name="oid_grupp" value="{$id_grupp}">
<button type="submit" name="grupp_transport_save" class="btn btn-success">Сохранить</button>
</div>
</div>
</form>
</div>