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.
 
 
 

41 lines
1.3 KiB

<div class="device-popup" type="provisioner">
<div class="block-brand">
<div class="title-bar clearfix">
<div class="title pull-left">{{i18n.devices.provisionerPopup.brandHeadline}}</div>
<a class="monster-link pull-right missing-brand" href="javascript:void(0)">{{i18n.devices.provisionerPopup.missingBrand}}</a>
</div>
<div class="brand-selection">
{{#each brands}}
<div class="brand-box {{this.name}}" data-brand="{{this.name}}"/>
{{/each}}
</div>
</div>
<div class="block-device">
<div class="title-bar clearfix">
<div class="title pull-left">{{i18n.devices.provisionerPopup.deviceHeadline}}</div>
<a class="monster-link pull-right missing-brand" href="javascript:void(0)">{{i18n.devices.provisionerPopup.missingDevice}}</a>
</div>
<div class="device-selection">
{{#each brands}}
<div class="devices-brand" data-brand="{{this.name}}">
{{#each this.families}}
{{#each this.models}}
<div class="device-box" data-family="{{../name}}" data-model="{{this}}">
<div class="device-image {{../../name}}-{{this}}"/>
<div class="device-name">{{this}}</div>
</div>
{{/each}}
{{/each}}
</div>
{{/each}}
</div>
</div>
<div class="actions text-right">
<div class="selection"></div>
<button class="btn btn-primary next-step">{{i18n.next}}</button>
</div>
</div>