init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,54 @@
|
|||
@using Kreta.Web.Areas.Tanulo.Models;
|
||||
|
||||
@model TanuloiFeljegyzesekModel
|
||||
|
||||
@if (Model.TanuloiFeljegyzesekItemList.Count != 0)
|
||||
{
|
||||
<table class="tanuloiFeljegyzesekTable">
|
||||
@foreach (var item in Model.TanuloiFeljegyzesekItemList)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
<span style="@item.FeljegyzesStyle">
|
||||
@(string.Format("{0} (Tanár: {1}, {2}):", item.Datum.ToShortDateString(), item.TanarNev, item.FeljegyzesTipusa))
|
||||
</span>
|
||||
<span>
|
||||
@(item.FejlegyzesSzovege)
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</table>
|
||||
}
|
||||
else
|
||||
{
|
||||
<div class="k-grid-norecords">
|
||||
<div class="k-grid-norecords-template">Nincs találat</div>
|
||||
</div>
|
||||
|
||||
}
|
||||
|
||||
<style type="text/css">
|
||||
|
||||
table.tanuloiFeljegyzesekTable {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.tanuloiFeljegyzesekTable > tbody > tr {
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
table.tanuloiFeljegyzesekTable > tbody > tr:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
table.tanuloiFeljegyzesekTable > tbody > tr:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
table.tanuloiFeljegyzesekTable > tbody > tr > td > span {
|
||||
display: block;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue