fehler begin
This commit is contained in:
BIN
Praktikum3/bt/templates/.DS_Store
vendored
BIN
Praktikum3/bt/templates/.DS_Store
vendored
Binary file not shown.
20
Praktikum3/bt/templates/fehlerdetail.tpl
Normal file
20
Praktikum3/bt/templates/fehlerdetail.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
<!-- Template -->
|
||||
<form id="idForm" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Pflege Fehlerkategorien
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
|
||||
<input type="hidden" value="#context.data.id#" id="id_s" name="id_s" />
|
||||
<div class="clFormRow">
|
||||
<label for="name_s">Name <span class="clRequired"></span></label>
|
||||
<input type="text" value="#context.data.name#" id="name_s" name="name_s" autofocus required />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="idButtonArea" class="clButtonArea">
|
||||
<button data-action="back" class="clButton">Zurück</button>
|
||||
<button data-action="save" class="clButton">Speichern</button>
|
||||
</div>
|
||||
</form>
|
||||
<!-- EOF -->
|
27
Praktikum3/bt/templates/fehlerlist.tpl
Executable file
27
Praktikum3/bt/templates/fehlerlist.tpl
Executable file
@ -0,0 +1,27 @@
|
||||
<!-- Template -->
|
||||
<div id="idListContent" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Pflege SW-Mitarbeiter
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
<table id="idList">
|
||||
<tr class="listheader"><th>Name</th><th>ID</th><th>Komponente-ID</th><th>(KatFehler-ID)</th><th>(KatUrsache-ID)</th><th>(QS)</th><th>(SW)</th><th>Status</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['id']#</td><td>#row_o['komponente-id']#</td><td>#row_o['katfehler-id']#</td><td>#row_o['katursache-id']#</td><td>#row_o['qsmitarbeiter-id']#</td><td>#row_o['swentwickler-id']#</td><td>#row_o['status']#</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="editqs" class="clButton">Bearbeiten QS</button>
|
||||
<button data-action="editsw" class="clButton">Bearbeiten SW</button>
|
||||
<button data-action="delete" class="clButton">(Löschen)</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- EOF -->
|
20
Praktikum3/bt/templates/fehlerqsdetail.tpl
Normal file
20
Praktikum3/bt/templates/fehlerqsdetail.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
<!-- Template -->
|
||||
<form id="idForm" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Pflege Fehlerkategorien
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
|
||||
<input type="hidden" value="#context.data.id#" id="id_s" name="id_s" />
|
||||
<div class="clFormRow">
|
||||
<label for="name_s">Name <span class="clRequired"></span></label>
|
||||
<input type="text" value="#context.data.name#" id="name_s" name="name_s" autofocus required />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="idButtonArea" class="clButtonArea">
|
||||
<button data-action="back" class="clButton">Zurück</button>
|
||||
<button data-action="save" class="clButton">Speichern</button>
|
||||
</div>
|
||||
</form>
|
||||
<!-- EOF -->
|
20
Praktikum3/bt/templates/fehlerswdetail.tpl
Normal file
20
Praktikum3/bt/templates/fehlerswdetail.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
<!-- Template -->
|
||||
<form id="idForm" class="clContent">
|
||||
<h2 id="idContentHeader" class="clContentHeader">
|
||||
Pflege Fehlerkategorien
|
||||
</h2>
|
||||
<div id="idContentArea" class="clContentArea">
|
||||
|
||||
<input type="hidden" value="#context.data.id#" id="id_s" name="id_s" />
|
||||
<div class="clFormRow">
|
||||
<label for="name_s">Name <span class="clRequired"></span></label>
|
||||
<input type="text" value="#context.data.name#" id="name_s" name="name_s" autofocus required />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="idButtonArea" class="clButtonArea">
|
||||
<button data-action="back" class="clButton">Zurück</button>
|
||||
<button data-action="save" class="clButton">Speichern</button>
|
||||
</div>
|
||||
</form>
|
||||
<!-- EOF -->
|
Reference in New Issue
Block a user