1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/app/templates/components/plot-value.hbs
2016-07-27 13:43:10 +02:00

31 lines
752 B
Handlebars

Value
<div class="popover-content hidden">
<div class="plot-edit-container">
<form class="plot-edit-form" {{action 'savePlot' on='submit'}}>
<table>
<tr>
<td>
<label for="simulator">Simulator</label>
</td>
<td>
{{input id='simulator' type='number' value=plot.simulator min=1 max=255 width='60px'}}
</td>
</tr>
<tr>
<td>
<label for="signal">Signal</label>
</td>
<td>
{{input id='signal' value=plot.signal}}
</td>
</tr>
<tr>
<td colspan="2">
<button type="submit">Save</button>
</td>
</tr>
</table>
</form>
</div>
</div>