Изменение отображения выбранного старосты группы в админ панели
This commit is contained in:
parent
564e8c6bf7
commit
3a12559be5
|
@ -46,7 +46,7 @@
|
|||
{foreach from=$facult_groups key=key item=group}
|
||||
<tr {if isset($smarty.get.id) AND $group['id'] == $smarty.get.id } style="background-color: #dff0d8;"{/if}>
|
||||
<td><a href="/modul/attendancelog/headman/add_edit/{$group['id']}/"> <h5 class="text-center">{$group.sokr}</h5></a></td>
|
||||
<td> <h5 class="text-center">{if isset($group.headman)}{$group.headman} {else} <span style="color: red">не назначен !</span> {/if}</h5></td>
|
||||
<td> <h5 class="text-center">{if isset($group.headman)}{$group.headman} {else} <span style="color: #9d0202">не назначен !</span> {/if}</h5></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
|
@ -55,9 +55,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="span8">
|
||||
{if isset($headmanPageActionResult.headman) }
|
||||
<div class="alert alert-info"> <button class="close" data-dismiss="alert">×</button> <h3>Староста уже выбран(а)! - <strong> {$headmanPageActionResult.headman}</strong></h3> </div>
|
||||
{/if}
|
||||
<!-- {if isset($headmanPageActionResult.headman) }-->
|
||||
<!-- <div class="alert alert-info"> <button class="close" data-dismiss="alert">×</button> <h3>Староста уже выбран(а)! - <strong> {$headmanPageActionResult.headman}</strong></h3> </div>-->
|
||||
<!-- {/if}-->
|
||||
<div class="widget blue">
|
||||
<div class="widget-title">
|
||||
<h4><i class="icon-reorder"></i> Назначить старосту </h4>
|
||||
|
@ -69,8 +69,12 @@
|
|||
<caption><h4>{$headmanPageActionResult.current_group.sokr}</h4></caption>
|
||||
<tbody>
|
||||
{foreach from=$headmanPageActionResult.students key=user_id item=info}
|
||||
<tr {if $info.headman == 1} style="c6olor: #48847; background-color: #dff0d8;" {/if}>
|
||||
<td> <h5>{$info.student_name}</h5> </td>
|
||||
<tr {if $info.headman == 1} style="color: #48847; background-color: #dff0d8;" {/if}>
|
||||
{if $info.headman == 1}
|
||||
<td><h5><strong> {$info.student_name} - Староста </strong></h5></td>
|
||||
{else}
|
||||
<td> <h5>{$info.student_name} </h5> </td>
|
||||
{/if}
|
||||
<td style="min-width: 30%"><h5><input type="radio" name="headman_request" value="{$user_id}" {if $info.headman == 1} checked {/if}></h5></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
@ -87,7 +91,7 @@
|
|||
</div>
|
||||
{else}
|
||||
<div class="row-fluid">
|
||||
<div class="span3">
|
||||
<div class="span4">
|
||||
<div class="widget blue">
|
||||
<div class="widget-title">
|
||||
<h4><i class="icon-reorder"></i> Выбрать группу </h4>
|
||||
|
@ -113,7 +117,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="span9">
|
||||
<div class="span8">
|
||||
<div class="widget blue">
|
||||
<div class="widget-title">
|
||||
<h4><i class="icon-reorder"></i> Назначить старосту </h4>
|
||||
|
|
Loading…
Reference in New Issue