mirror of
https://github.com/cuigh/swirl
synced 2025-01-02 17:16:37 +00:00
86 lines
3.5 KiB
Go
86 lines
3.5 KiB
Go
{{ extends "_base" }}
|
|
{{ import "../_modules/pager" }}
|
|
|
|
{{ block script() }}
|
|
<script>$(() => new Swirl.Service.ListPage())</script>
|
|
{{ end }}
|
|
|
|
{{ block body_content() }}
|
|
<section class="section">
|
|
<nav class="level">
|
|
<!-- Left side -->
|
|
<div class="level-left">
|
|
<div class="level-item">
|
|
<form>
|
|
<div class="field has-addons">
|
|
<p class="control">
|
|
<input name="name" value="{{.Name}}" class="input" placeholder="Search by name">
|
|
</p>
|
|
<p class="control">
|
|
<button class="button is-primary">{{ i18n("button.search") }}</button>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="level-item">
|
|
<p class="subtitle is-5">
|
|
<strong>{{.Pager.Count}}</strong>
|
|
<span class="is-lowercase">{{ i18n("menu.service") }}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<!-- Right side -->
|
|
<div class="level-right">
|
|
<p class="level-item">
|
|
<a class="button is-success" href="new"><span class="icon"><i class="fas fa-plus"></i></span><span>{{ i18n("button.new") }}</span></a>
|
|
</p>
|
|
</div>
|
|
</nav>
|
|
|
|
<table id="table-items" class="table is-bordered is-striped is-narrow is-fullwidth">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ i18n("field.name") }}</th>
|
|
<th>{{ i18n("field.image") }}</th>
|
|
<th width="145">Mode</th>
|
|
<th>{{ i18n("field.updated-at") }}</th>
|
|
<th width="140">{{ i18n("field.action") }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Services}}
|
|
<tr>
|
|
<td><a href="{{.Name}}/detail">{{.Name}}</a></td>
|
|
<td>{{ limit(.Image, 60) }}</td>
|
|
<td>
|
|
<div class="tags has-addons">
|
|
<span class="tag is-{{.Mode == "replicated" ? "info" : "dark"}}">{{.Mode}}</span>
|
|
<span class="tag is-{{.Actives == 0 ? "danger" : (.Actives < .Replicas ? "warning" : "success")}}">{{.Actives}}/{{.Replicas}}</span>
|
|
</div>
|
|
</td>
|
|
<td>{{time(.UpdatedAt)}}{{ if .UpdateStatus }}<span class="icon {{ if .UpdateStatus == "completed" }}has-text-success{{ else if .UpdateStatus == "updating" }}has-text-warning{{ else }}has-text-danger{{ end }} tooltip" data-tooltip="{{.UpdateStatus}}"><i class="fas fa-circle"></i></span>{{ end }}</td>
|
|
<td>
|
|
<a href="{{.Name}}/edit" class="button is-small is-dark is-outlined tooltip is-tooltip-bottom" data-tooltip="{{ i18n("button.edit") }}">
|
|
<span class="icon"><i class="fas fa-edit"></i></span>
|
|
</a>
|
|
{{if .Mode == "replicated"}}
|
|
<button type="button" class="button is-small is-info is-outlined tooltip is-tooltip-bottom" data-tooltip="{{ i18n("button.scale") }}" data-action="scale-service" data-replicas="{{.Replicas}}">
|
|
<span class="icon"><i class="fas fa-arrows-alt"></i></span>
|
|
</button>
|
|
{{end}}
|
|
{{if .Rollback }}
|
|
<button type="button" class="button is-small is-info is-outlined tooltip is-tooltip-bottom" data-tooltip="{{ i18n("button.rollback") }}" data-action="rollback-service">
|
|
<span class="icon"><i class="fas fa-history"></i></span>
|
|
</button>
|
|
{{end}}
|
|
<button class="button is-small is-danger is-outlined tooltip is-tooltip-bottom" data-tooltip="{{ i18n("button.delete") }}" data-action="delete-service">
|
|
<span class="icon"><i class="fas fa-times"></i></span>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
{{ yield pager(info=.Pager) }}
|
|
</section>
|
|
{{ end }} |