2017-01-17 19:57:12 +01:00
|
|
|
<!-- Template -->
|
|
|
|
<form id="idForm" class="clContent">
|
|
|
|
<h2 id="idContentHeader" class="clContentHeader">
|
2017-01-18 18:14:35 +01:00
|
|
|
Bearbeitung Fehlerdaten
|
2017-01-17 19:57:12 +01:00
|
|
|
</h2>
|
|
|
|
<div id="idContentArea" class="clContentArea">
|
|
|
|
|
|
|
|
<input type="hidden" value="#context.data.id#" id="id_s" name="id_s" />
|
2017-01-18 18:14:35 +01:00
|
|
|
<input type="hidden" value="" id="katursacheid_s" name="katursacheid_s" />
|
|
|
|
<input type="hidden" value="zugewiesen" id="status_s" name="status_s" />
|
2017-01-19 11:27:12 +01:00
|
|
|
<input type="hidden" value="" id="zeitbehoben_s" name="zeitbehoben_s" />
|
|
|
|
<input type="hidden" value="" id="beschreibungursache_s" name="beschreibungursache_s" />
|
2017-01-17 19:57:12 +01:00
|
|
|
<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>
|
2017-01-19 11:27:12 +01:00
|
|
|
<div class="clFormRow">
|
|
|
|
<label for="beschreibung_s">Beschreibung <span class="clRequired"></span></label>
|
|
|
|
<input type="text" value="#context.data.beschreibung#" id="beschreibung_s" name="beschreibung_s" autofocus required />
|
|
|
|
</div>
|
|
|
|
<div class="clFormRow">
|
|
|
|
<label for="zeiterfasst_s">Erfasst am <span class="clRequired"></span></label>
|
|
|
|
<input type="text" value="#context.data.zeiterfasst#" id="zeiterfasst_s" name="zeiterfasst_s" autofocus required />
|
|
|
|
</div>
|
2017-01-17 19:57:12 +01:00
|
|
|
|
2017-01-18 18:14:35 +01:00
|
|
|
<div class="clFormRow">
|
|
|
|
<label for="komponenteid_s">Komponente-ID <span class="clRequired"></span></label>
|
|
|
|
<input type="text" value="#context.data.komponenteid#" id="komponenteid_s" name="komponenteid_s" autofocus required />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<label for="katfehlerid_s">Fehlerkategorie <span class="clRequired"></span></label>
|
|
|
|
<select name="katfehlerid_s">
|
|
|
|
@var rows_o = context['katfehler'];@
|
|
|
|
@for var key_s in rows_o@
|
|
|
|
@var row_o = rows_o[key_s];@
|
|
|
|
@if key_s == context.data.katfehlerid@
|
|
|
|
<option value="#key_s#" selected>#row_o['name']#</option>
|
|
|
|
@else@
|
|
|
|
<option value="#key_s#">#row_o['name']#</option>
|
|
|
|
@endif;@
|
|
|
|
@endfor@
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<label for="qsmitarbeiterid_s">QS-Mitarbeiter <span class="clRequired"></span></label>
|
|
|
|
<select name="qsmitarbeiterid_s">
|
|
|
|
@var rows_o = context['qsmitarbeiter'];@
|
|
|
|
@for var key_s in rows_o@
|
|
|
|
@var row_o = rows_o[key_s];@
|
|
|
|
@if key_s == context.data.qsmitarbeiterid@
|
|
|
|
<option value="#key_s#" selected>#row_o['name']#</option>
|
|
|
|
@else@
|
|
|
|
<option value="#key_s#">#row_o['name']#</option>
|
|
|
|
@endif;@
|
|
|
|
@endfor@
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<label for="swentwicklerid_s">SW-Entwickler <span class="clRequired"></span></label>
|
|
|
|
<select name="swentwicklerid_s">
|
|
|
|
@var rows_o = context['swentwickler'];@
|
|
|
|
@for var key_s in rows_o@
|
|
|
|
@var row_o = rows_o[key_s];@
|
|
|
|
@if key_s == context.data.swentwicklerid@
|
|
|
|
<option value="#key_s#" selected>#row_o['name']#</option>
|
|
|
|
@else@
|
|
|
|
<option value="#key_s#">#row_o['name']#</option>
|
|
|
|
@endif;@
|
|
|
|
@endfor@
|
|
|
|
</select>
|
|
|
|
|
2017-01-17 19:57:12 +01:00
|
|
|
</div>
|
|
|
|
<div id="idButtonArea" class="clButtonArea">
|
|
|
|
<button data-action="back" class="clButton">Zurück</button>
|
2017-01-19 17:28:35 +01:00
|
|
|
<button data-action="saven" class="clButton">Entwickler zuweisen</button>
|
2017-01-17 19:57:12 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<!-- EOF -->
|