chore: format runner id

This commit is contained in:
Jason Song 2023-01-06 14:12:14 +08:00
parent 326ae5d442
commit 05c08ec246
No known key found for this signature in database
GPG Key ID: 8402EEEE4511A8B5
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<div class="runner-container">
{{template "base/alert" .}}
<h4 class="ui top attached header">
{{.locale.Tr "actions.runners.runner_title"}} #{{.Runner.ID}} {{.Runner.Name}}
{{.locale.Tr "actions.runners.runner_title"}} {{template "shared/actions/runner_id" .Runner.ID}} {{.Runner.Name}}
</h4>
<div class="ui attached segment">
<form class="ui form" action="{{.Link}}" method="post">
@ -69,7 +69,7 @@
<tbody>
{{range .Tasks}}
<tr>
<td><a href="{{.GetBuildViewLink}}" target="_blank">#{{.ID}}</a></td>
<td><a href="{{.GetBuildViewLink}}" target="_blank">{{template "shared/actions/runner_id" .ID}}</a></td>
<td><span class="ui label task-status-{{.Status.String}}">{{.Status.String}}</span></td>
<td>{{.GetRepoName}}</td>
<td><strong>

View File

@ -0,0 +1 @@
<i><b>#{{.}}</b></i>

View File

@ -62,12 +62,12 @@
<td>
{{if .Editable $.RunnerOnwerID $.RunnerRepoID}}
<a href="{{$.Link}}/{{.ID}}" class="tooltip" data-content="{{.Description}}">
<span class="runner-id">#{{.ID}}</span>
<span class="runner-id">{{template "shared/actions/runner_id" .ID}}</span>
<span class="runner-name">{{.Name}}</span>
</a>
{{else}}
<p class="tooltip" data-content="{{.Description}}">
<span class="runner-id">#{{.ID}}</span>
<span class="runner-id">{{template "shared/actions/runner_id" .ID}}</span>
<span class="runner-name">{{.Name}}</span>
</p>
{{end}}