EIOS/tpl/tpl_kursov.html

82 lines
2.6 KiB
HTML

<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="/learn/kursov/">Курсовые работы</a></li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div class="row-fluid">
<div class="span12">
<div class="row-fluid">
<div class="widget green">
<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">
{if count($lections)}
<table class="table table-striped table-bordered table-advance table-hover">
<thead>
<tr>
<th>Дата</th>
<th>Название</th>
<th>Описание</th>
<th>Файл</th>
</tr>
</thead>
<tbody>
{foreach from=$lections item=lc}
<tr>
<td style="background-color: #d9edf7!important;">{$lc.data_u}</td>
<td style="background-color: #d9edf7!important;"><b>{$lc.name}</b></td>
<td style="background-color: #d9edf7!important;">{$lc.descrip}</td>
<td style="background-color: #d9edf7!important;" nowarp>{if $lc.file!=''}
{if $lc.file=="-1"}
<span class="label label-mini">заблокировано</span>
{else}
<i class="icon-file"></i> <a href="/upload/kursov/{$lc.file}">скачать файл</a>
{/if}
{else}
<span class="label label-important label-mini">нет файла</span>
{/if}</td>
</tr>
{if count($lc.le)}
{foreach from=$lc.le item=lcpr}
<tr class="tooltips" data-placement="top" data-original-title="Лекционный материал">
<td>{$lcpr.data_u}</td>
<td>{$lcpr.name}</td>
<td>{$lcpr.descrip}</td>
<td nowarp>{if $lcpr.file!=''}
{if $lcpr.file=="-1"}
<span class="label label-mini">заблокировано</span>
{else}
<i class="icon-file"></i> <a href="/upload/lections/{$lcpr.file}">скачать файл</a>
{/if}
{else}
<span class="label label-important label-mini">нет файла</span>
{/if}</td>
</tr>
{/foreach}
{/if}
{/foreach}
</tbody>
</table>
{/if}
</div>
</div>
</div>
</div>
</div>
</div>
</div>