open-nomad/ui/app/templates/servers/server.hbs
2017-10-24 12:04:08 -07:00

26 lines
540 B
Handlebars

<div class="columns">
<div class="column is-half">
<div class="message">
<div class="message-header">
Tags
</div>
<table class="table server-tags">
<thead>
<tr>
<td>Name</td>
<td>Value</td>
</tr>
</thead>
<tbody>
{{#each sortedTags as |tag|}}
<tr>
<td>{{tag.name}}</td>
<td>{{tag.value}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</div>