open-nomad/ui/app/templates/servers/server.hbs
Buck Doyle 90c9b89b5e
UI: Add page titles (#5924)
This uses ember-page-title to add dynamic page titles throughout the
route hierarchy. When there’s more than one region, the current
current region is added before the final entry of “- Nomad”.
2019-07-17 15:02:58 -05:00

27 lines
592 B
Handlebars

{{title "Server " model.name}}
<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 data-test-server-tag>
<td>{{tag.name}}</td>
<td>{{tag.value}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</div>