praktikum 3
This commit is contained in:
26
Praktikum3/lit-x/templates/sourceslist.tpl
Executable file
26
Praktikum3/lit-x/templates/sourceslist.tpl
Executable file
@ -0,0 +1,26 @@
|
||||
<!-- Template -->
|
||||
<!-- sources -->
|
||||
<div id="idListContent" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Literatur- / Quellenverzeichnis
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
<table id="idList">
|
||||
<tr class="listheader"><th>Name</th><th>Typ</th><th>Referenz</th></tr>
|
||||
@var rows_o = context['data'];@
|
||||
@for var key_s in rows_o@
|
||||
<tr id='#key_s#'>
|
||||
@var row_o = rows_o[key_s];@
|
||||
<td>#row_o['name']#</td><td>#row_o['typ']#</td><td>#row_o['referenz']#</td>
|
||||
</tr>
|
||||
@endfor@
|
||||
</table>
|
||||
</div>
|
||||
<div id="idButtonArea" class="clButtonArea">
|
||||
<button data-action="add" class="clButton">Hinzufügen</button>
|
||||
<button data-action="edit" class="clButton">Bearbeiten</button>
|
||||
<button data-action="delete" class="clButton">Löschen</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- EOF -->
|
Reference in New Issue
Block a user