ppm2
This commit is contained in:
35
Praktikum2/ppm2/templates/listChoice.tpl
Normal file
35
Praktikum2/ppm2/templates/listChoice.tpl
Normal file
@@ -0,0 +1,35 @@
|
||||
<div id="idContent" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Übersicht Praxisphasen Auswahl
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
|
||||
<table id="idList">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Firma</th>
|
||||
<th>Beschreibung</th>
|
||||
<th>Voraussetzungen</th>
|
||||
<th>Firmenbetreuer</th>
|
||||
</tr>
|
||||
@if context['content']!= 'None'@
|
||||
@for entries in context['content']@
|
||||
<tr id=${entries}>
|
||||
<td id=#entries#>#context['content'][entries]['Name']#</td>
|
||||
<td id=#entries#>#context['content'][entries]['Firma']#</td>
|
||||
<td id=#entries#>#context['content'][entries]['Beschreibung']#</td>
|
||||
<td id=#entries#>#context['content'][entries]['Voraussetzungen']#</td>
|
||||
<td id=#entries#>#context['content'][entries]['Firmenbetreuer']#</td>
|
||||
</tr id=#entries#>
|
||||
@endfor@
|
||||
|
||||
@endif@
|
||||
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="idButtonArea" class="clButtonArea">
|
||||
<a data-action="index" class="clButton">Startseite</a>
|
||||
<a class="clButton" id="Annehmen">Annehmen</a>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user