This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/characteristics/characteristic-form/template.hbs
2015-11-05 10:16:27 -07:00

30 lines
921 B
Handlebars

<form class="grid-form" {{action 'save' on='submit'}}>
<fieldset>
<legend><em>{{characteristic.characteristicName}}</em></legend>
<div data-row-span="1">
<div data-field-span="1">
<label>Characteristic Name</label>
{{input value=characteristic.characteristicName class="characteristic-name"}}
</div>
</div>
<div data-row-span="2">
<div data-field-span="1">
<label>Characteristic Type</label>
{{input value=characteristic.characteristicTypeName}}
</div>
<div data-field-span="1">
<label>Sort Order</label>
{{input value=characteristic.sortOrder}}
</div>
</div>
</fieldset>
<br>
<a class="button-red smaller" {{action 'cancel'}}>
Cancel
</a>
{{#if characteristic.hasDirtyAttributes}}
<button type="submit" class="button-green smaller save-characteristic">
Save
</button>
{{/if}}
</form>