2022-08-26 03:22:55 +00:00
|
|
|
<section class="section service-list">
|
|
|
|
<h1 class="title">
|
|
|
|
<LinkTo class="back-link" @route="jobs.job.services">
|
|
|
|
<FlightIcon
|
|
|
|
@name="chevron-left"
|
|
|
|
@title="Back to services"
|
|
|
|
@size="24"
|
|
|
|
/>
|
|
|
|
</LinkTo>
|
|
|
|
{{this.model.name}}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<ListTable
|
|
|
|
@source={{this.model.instances}}
|
|
|
|
as |t|
|
|
|
|
>
|
|
|
|
<t.head>
|
2022-08-31 14:50:40 +00:00
|
|
|
<th>Allocation</th>
|
2022-09-19 21:05:21 +00:00
|
|
|
<th>Client</th>
|
2022-08-31 14:50:40 +00:00
|
|
|
<th>IP Address & Port</th>
|
2022-08-26 03:22:55 +00:00
|
|
|
</t.head>
|
|
|
|
<t.body as |row|>
|
2022-08-29 18:04:55 +00:00
|
|
|
<tr data-test-service-row>
|
2022-08-26 03:22:55 +00:00
|
|
|
<td
|
|
|
|
{{keyboard-shortcut
|
|
|
|
enumerated=true
|
|
|
|
action=(action "gotoAllocation" row.model.allocation)
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<LinkTo @route="allocations.allocation" @model={{row.model.allocation}}>{{row.model.allocation.shortId}}</LinkTo>
|
|
|
|
</td>
|
2022-09-19 21:05:21 +00:00
|
|
|
<td>
|
|
|
|
<Tooltip @text={{row.model.node.name}}>
|
|
|
|
<LinkTo @route="clients.client" @model={{row.model.node.id}}>{{row.model.node.shortId}}</LinkTo>
|
|
|
|
</Tooltip>
|
|
|
|
</td>
|
2022-08-26 03:22:55 +00:00
|
|
|
<td>
|
|
|
|
{{row.model.address}}:{{row.model.port}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</t.body>
|
|
|
|
</ListTable>
|
|
|
|
</section>
|