Files
old-confighub/web/client/views/shared/configurationList/configurationList.html
2015-05-28 13:44:14 +02:00

21 lines
519 B
HTML

<template name='configurationList'>
<div class="row">
{{#each configurations}}
{{> configurationListItem}}
{{else}}
You don't have any configurations for this machine.
{{/each}}
</div>
{{#unless newConfigurationRequested}}
<div class="row">
<div class="col-lg-12">
<button class='add-new-config-btn'>Add new configuration</button>
</div>
</div>
{{/unless}}
{{#if newConfigurationRequested}}
{{> newConfigurationDialog machineId=machineId}}
{{/if}}
</template>