верстка таблиц журналов
This commit is contained in:
parent
26ee706cb9
commit
c63df969c4
|
@ -38,92 +38,68 @@
|
|||
<div class="widget-body">
|
||||
<div class="tabbable custom-tab">
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="active"><a href="#tab_1_1" data-toggle="tab">Понедельник</a></li>
|
||||
<li class=""><a href="#tab_1_2" data-toggle="tab">Вторник</a></li>
|
||||
<li class=""><a href="#tab_1_3" data-toggle="tab">Среда</a></li>
|
||||
<li class=""><a href="#tab_1_4" data-toggle="tab">Четверг</a></li>
|
||||
<li class=""><a href="#tab_1_5" data-toggle="tab">Пятница</a></li>
|
||||
<li class=""><a href="#tab_1_6" data-toggle="tab">Суббота</a></li>
|
||||
<li class=""><a href="#tab_1_7" data-toggle="tab">Воскресенье</a></li>
|
||||
{foreach from=$actionResult.info key=key item=week}
|
||||
{if $key == 'Четная'}
|
||||
{foreach from=$week key=key item=day}
|
||||
<li><a href="#tab_1_{$key}" data-toggle="tab">{$key}</a></li>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="tab_1_1">
|
||||
<p>I'm in Section 1.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_2">
|
||||
<p>Howdy, I'm in Section 2.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_3">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_4">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_5">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_6">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
<div class="tab-pane" id="tab_1_7">
|
||||
<p>What up girl, this is Section 3.</p>
|
||||
<p>
|
||||
Текст
|
||||
</p>
|
||||
</div>
|
||||
{foreach from=$actionResult.info key=key item=week}
|
||||
{if $key == 'Четная'}
|
||||
{foreach from=$week key=key item=day}
|
||||
<div class="tab-pane active" id="tab_1_{$key}">
|
||||
<div class="accordion" id="accordion{$key}">
|
||||
{foreach from=$day key=key item=class}
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion{$day.day1}" href="#collapse_{$class.day1}-{$class.time1}">
|
||||
{$class.predmet}
|
||||
</a>
|
||||
</div>
|
||||
<div id="collapse_{$class.day1}-{$class.time1}" class="accordion-body collapse in">
|
||||
<div class="accordion-inner">
|
||||
<form action="" method="post">
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>ФИО</th>
|
||||
<th>Присутствие</th>
|
||||
<th>Примечание</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$actionResult.students.students key=key item=student}
|
||||
<tr>
|
||||
<td>{$key}</td>
|
||||
<td>{$student}</td>
|
||||
<td><input type="checkbox" name="" id="{$key}"></td>
|
||||
<td><input type="text" name="" id="" style="width: 90%"></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<button type="submit" class="btn btn-success">Сохранить</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row-fluid">
|
||||
<div class="span9">
|
||||
<div class="widget blue">
|
||||
<div class="widget-title">
|
||||
<h4><i class="icon-reorder"></i></h4>
|
||||
<span class="tools"><a href="javascript:;" class="icon-chevron-down"></a></span>
|
||||
</div>
|
||||
<div class="widget-body">
|
||||
<table class="table table-striped table-bordered">
|
||||
<caption> Студенты группы {$groupName}</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Номер</th>
|
||||
<th>Имя</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$actionResult['students'] key=key item=name}
|
||||
<tr>
|
||||
<td>{$key +1 }</td>
|
||||
<td>{$name}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
<div class="row-fluid">
|
||||
<div class="span4">
|
||||
|
@ -157,11 +133,11 @@
|
|||
<tbody>
|
||||
{foreach from=$groups key=key item=group}
|
||||
{if $key != 0}
|
||||
<tr>
|
||||
<td><a href="/modul/attendancelog/main/show/{$group['id']}/">{$group.sokr}</a></td>
|
||||
<td>{$group['fo']}</td>
|
||||
<td>{$group['kurs']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="/modul/attendancelog/main/show/{$group['id']}/">{$group.sokr}</a></td>
|
||||
<td>{$group['fo']}</td>
|
||||
<td>{$group['kurs']}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue