You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<div class="control-group">
|
|
|
<label class="control-label" for="owner_id">{{ i18n.devices.popupSettings.assignTo }}</label>
|
|
|
<div class="controls">
|
|
|
<select name="owner_id">
|
|
|
{{#select owner_id}}
|
|
|
<option value="none">
|
|
|
{{ i18n.devices.popupSettings.noOwner }}
|
|
|
</option>
|
|
|
{{#each extra.users}}
|
|
|
<option value="{{id}}">
|
|
|
{{getUserFullName this}}
|
|
|
</option>
|
|
|
{{/each}}
|
|
|
{{/select}}
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|