sharp-wawi/templates/sharpwawi.models.Part.hfrm

54 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-09-07 16:59:17 +02:00
<?frame /layout.hfrm ?>
<?set pagetitle "Artikel Details"?>
2018-09-12 21:29:58 +02:00
<h1>[ <?=this.Key?> ] <?=this.Name?> <?if this.Dimensions?><i><?=this.Dimensions?></i><?end?><?if this.Standards ?> [ <?=this.Standards?> ]<?end?></h1>
2018-09-07 16:59:17 +02:00
<form action="<?=REDIT_PATH?>" method="POST" ENCTYPE="multipart/form-data"/>
<div class="block">
2018-09-12 21:29:58 +02:00
<div class="group column">
2018-09-07 16:59:17 +02:00
<div class="title">Allgemeine Angaben</div>
<div class="block">
<label>Schlüssel</label>
<?editor this.Key?>
</div>
<div class="block">
<label>Bezeichnung</label>
<?editor this.Name?>
</div>
2018-09-12 21:29:58 +02:00
<div class="block">
<label>Beschreibung</label>
<?editor this.Description "MultiLine"?>
</div>
</div>
<div class="group column">
<div class="block">
<label>Eingehaltene Normen</label>
<?editor this.Standards?>
</div>
<div class="block">
<label>Dimensionen</label>
<?editor this.Dimensions?>
</div>
2018-09-07 16:59:17 +02:00
<div class="block">
<label>TEST: Rank</label>
<?editor this.Rank?>
</div>
<div class="block">
<label>TEST: Priority</label>
<?editor this.Priority?>
</div>
</div>
</div>
2018-09-12 21:29:58 +02:00
<input type="submit" value="Aktualisieren"/>
<input type="submit" name="REDIT_SUBMIT" value="save"/>
2018-09-07 16:59:17 +02:00
</form>