mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	fix issues on action runners page (#27226)
- switch from some weird status badge to label - translate untranslated `Reset registration token` string - change documentation link from act_runner README to Gitea Docs site - fix "No runners available" message width - use `ctx.Locale.Tr` where possible 
This commit is contained in:
		@@ -3507,6 +3507,7 @@ runners.status.idle = Idle
 | 
				
			|||||||
runners.status.active = Active
 | 
					runners.status.active = Active
 | 
				
			||||||
runners.status.offline = Offline
 | 
					runners.status.offline = Offline
 | 
				
			||||||
runners.version = Version
 | 
					runners.version = Version
 | 
				
			||||||
 | 
					runners.reset_registration_token = Reset registration token
 | 
				
			||||||
runners.reset_registration_token_success = Runner registration token reset successfully
 | 
					runners.reset_registration_token_success = Runner registration token reset successfully
 | 
				
			||||||
 | 
					
 | 
				
			||||||
runs.all_workflows = All Workflows
 | 
					runs.all_workflows = All Workflows
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,7 +9,7 @@
 | 
				
			|||||||
			<div class="runner-basic-info">
 | 
								<div class="runner-basic-info">
 | 
				
			||||||
				<div class="field gt-dib gt-mr-4">
 | 
									<div class="field gt-dib gt-mr-4">
 | 
				
			||||||
					<label>{{.locale.Tr "actions.runners.status"}}</label>
 | 
										<label>{{.locale.Tr "actions.runners.status"}}</label>
 | 
				
			||||||
					<span class="runner-status-{{if .Runner.IsOnline}}online{{else}}offline{{end}}">{{.Runner.StatusLocaleName $.locale}}</span>
 | 
										<span class="ui {{if .Runner.IsOnline}}green{{else}}basic{{end}} label">{{.Runner.StatusLocaleName $.locale}}</span>
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
				<div class="field gt-dib gt-mr-4">
 | 
									<div class="field gt-dib gt-mr-4">
 | 
				
			||||||
					<label>{{.locale.Tr "actions.runners.last_online"}}</label>
 | 
										<label>{{.locale.Tr "actions.runners.last_online"}}</label>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,17 +1,16 @@
 | 
				
			|||||||
<div class="runner-container">
 | 
					<div class="runner-container">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	<h4 class="ui top attached header">
 | 
						<h4 class="ui top attached header">
 | 
				
			||||||
		{{.locale.Tr "actions.runners.runner_manage_panel"}} ({{.locale.Tr "admin.total" .Total}})
 | 
							{{ctx.Locale.Tr "actions.runners.runner_manage_panel"}} ({{ctx.Locale.Tr "admin.total" .Total}})
 | 
				
			||||||
		<div class="ui right">
 | 
							<div class="ui right">
 | 
				
			||||||
			<div class="ui top right pointing dropdown">
 | 
								<div class="ui top right pointing dropdown">
 | 
				
			||||||
				<button class="ui primary tiny button">
 | 
									<button class="ui primary tiny button">
 | 
				
			||||||
					{{.locale.Tr "actions.runners.new"}}
 | 
										{{ctx.Locale.Tr "actions.runners.new"}}
 | 
				
			||||||
					{{svg "octicon-triangle-down" 14 "dropdown icon"}}
 | 
										{{svg "octicon-triangle-down" 14 "dropdown icon"}}
 | 
				
			||||||
				</button>
 | 
									</button>
 | 
				
			||||||
				<div class="menu">
 | 
									<div class="menu">
 | 
				
			||||||
					<div class="item">
 | 
										<div class="item">
 | 
				
			||||||
						{{/* TODO: replece the document link when there's a better one than the README of act_runner */}}
 | 
											<a href="https://docs.gitea.com/usage/actions/act-runner">{{ctx.Locale.Tr "actions.runners.new_notice"}}</a>
 | 
				
			||||||
						<a href="https://gitea.com/gitea/act_runner/src/branch/main/README.md">{{.locale.Tr "actions.runners.new_notice"}}</a>
 | 
					 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					<div class="divider"></div>
 | 
										<div class="divider"></div>
 | 
				
			||||||
					<div class="header">
 | 
										<div class="header">
 | 
				
			||||||
@@ -19,13 +18,13 @@
 | 
				
			|||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					<div class="ui input">
 | 
										<div class="ui input">
 | 
				
			||||||
						<input type="text" value="{{.RegistrationToken}}">
 | 
											<input type="text" value="{{.RegistrationToken}}">
 | 
				
			||||||
						<button class="ui basic label button" aria-label="{{.locale.Tr "copy"}}" data-clipboard-text="{{.RegistrationToken}}">
 | 
											<button class="ui basic label button" aria-label="{{ctx.Locale.Tr "copy"}}" data-clipboard-text="{{.RegistrationToken}}">
 | 
				
			||||||
							{{svg "octicon-copy" 14}}
 | 
												{{svg "octicon-copy" 14}}
 | 
				
			||||||
						</button>
 | 
											</button>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
					<div class="divider"></div>
 | 
										<div class="divider"></div>
 | 
				
			||||||
					<div class="item">
 | 
										<div class="item">
 | 
				
			||||||
						<a href="{{$.Link}}/reset_registration_token">Reset registration token</a>
 | 
											<a href="{{$.Link}}/reset_registration_token">{{ctx.Locale.Tr "actions.runners.reset_registration_token"}}</a>
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
				</div>
 | 
									</div>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
@@ -37,7 +36,7 @@
 | 
				
			|||||||
			<!-- Search Text -->
 | 
								<!-- Search Text -->
 | 
				
			||||||
			<div class="ui fluid action input">
 | 
								<div class="ui fluid action input">
 | 
				
			||||||
				{{template "shared/searchinput" dict "locale" .locale "Value" .Keyword "AutoFocus" true}}
 | 
									{{template "shared/searchinput" dict "locale" .locale "Value" .Keyword "AutoFocus" true}}
 | 
				
			||||||
				<button class="ui primary button">{{.locale.Tr "explore.search"}}</button>
 | 
									<button class="ui primary button">{{ctx.Locale.Tr "explore.search"}}</button>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
		</form>
 | 
							</form>
 | 
				
			||||||
	</div>
 | 
						</div>
 | 
				
			||||||
@@ -46,22 +45,22 @@
 | 
				
			|||||||
			<thead>
 | 
								<thead>
 | 
				
			||||||
				<tr>
 | 
									<tr>
 | 
				
			||||||
					<th data-sortt-asc="online" data-sortt-desc="offline">
 | 
										<th data-sortt-asc="online" data-sortt-desc="offline">
 | 
				
			||||||
						{{.locale.Tr "actions.runners.status"}}
 | 
											{{ctx.Locale.Tr "actions.runners.status"}}
 | 
				
			||||||
						{{SortArrow "online" "offline" .SortType false}}
 | 
											{{SortArrow "online" "offline" .SortType false}}
 | 
				
			||||||
					</th>
 | 
										</th>
 | 
				
			||||||
					<th data-sortt-asc="newest" data-sortt-desc="oldest">
 | 
										<th data-sortt-asc="newest" data-sortt-desc="oldest">
 | 
				
			||||||
						{{.locale.Tr "actions.runners.id"}}
 | 
											{{ctx.Locale.Tr "actions.runners.id"}}
 | 
				
			||||||
						{{SortArrow "oldest" "newest" .SortType false}}
 | 
											{{SortArrow "oldest" "newest" .SortType false}}
 | 
				
			||||||
					</th>
 | 
										</th>
 | 
				
			||||||
					<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically">
 | 
										<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically">
 | 
				
			||||||
						{{.locale.Tr "actions.runners.name"}}
 | 
											{{ctx.Locale.Tr "actions.runners.name"}}
 | 
				
			||||||
						{{SortArrow "alphabetically" "reversealphabetically" .SortType false}}
 | 
											{{SortArrow "alphabetically" "reversealphabetically" .SortType false}}
 | 
				
			||||||
					</th>
 | 
										</th>
 | 
				
			||||||
					<th>{{.locale.Tr "actions.runners.version"}}</th>
 | 
										<th>{{ctx.Locale.Tr "actions.runners.version"}}</th>
 | 
				
			||||||
					<th>{{.locale.Tr "actions.runners.owner_type"}}</th>
 | 
										<th>{{ctx.Locale.Tr "actions.runners.owner_type"}}</th>
 | 
				
			||||||
					<th>{{.locale.Tr "actions.runners.labels"}}</th>
 | 
										<th>{{ctx.Locale.Tr "actions.runners.labels"}}</th>
 | 
				
			||||||
					<th>{{.locale.Tr "actions.runners.last_online"}}</th>
 | 
										<th>{{ctx.Locale.Tr "actions.runners.last_online"}}</th>
 | 
				
			||||||
					<th>{{.locale.Tr "edit"}}</th>
 | 
										<th>{{ctx.Locale.Tr "edit"}}</th>
 | 
				
			||||||
				</tr>
 | 
									</tr>
 | 
				
			||||||
			</thead>
 | 
								</thead>
 | 
				
			||||||
			<tbody>
 | 
								<tbody>
 | 
				
			||||||
@@ -69,16 +68,16 @@
 | 
				
			|||||||
					{{range .Runners}}
 | 
										{{range .Runners}}
 | 
				
			||||||
					<tr>
 | 
										<tr>
 | 
				
			||||||
						<td>
 | 
											<td>
 | 
				
			||||||
							<span class="runner-status-{{if .IsOnline}}online{{else}}offline{{end}}">{{.StatusLocaleName $.locale}}</span>
 | 
												<span class="ui {{if .IsOnline}}green{{else}}basic{{end}} label">{{.StatusLocaleName $.locale}}</span>
 | 
				
			||||||
						</td>
 | 
											</td>
 | 
				
			||||||
						<td>{{.ID}}</td>
 | 
											<td>{{.ID}}</td>
 | 
				
			||||||
						<td><p data-tooltip-content="{{.Description}}">{{.Name}}</p></td>
 | 
											<td><p data-tooltip-content="{{.Description}}">{{.Name}}</p></td>
 | 
				
			||||||
						<td>{{if .Version}}{{.Version}}{{else}}{{$.locale.Tr "unknown"}}{{end}}</td>
 | 
											<td>{{if .Version}}{{.Version}}{{else}}{{ctx.Locale.Tr "unknown"}}{{end}}</td>
 | 
				
			||||||
						<td><span data-tooltip-content="{{.BelongsToOwnerName}}">{{.BelongsToOwnerType.LocaleString $.locale}}</span></td>
 | 
											<td><span data-tooltip-content="{{.BelongsToOwnerName}}">{{.BelongsToOwnerType.LocaleString $.locale}}</span></td>
 | 
				
			||||||
						<td class="runner-tags">
 | 
											<td class="runner-tags">
 | 
				
			||||||
							{{range .AgentLabels}}<span class="ui label">{{.}}</span>{{end}}
 | 
												{{range .AgentLabels}}<span class="ui label">{{.}}</span>{{end}}
 | 
				
			||||||
						</td>
 | 
											</td>
 | 
				
			||||||
						<td>{{if .LastOnline}}{{TimeSinceUnix .LastOnline $.locale}}{{else}}{{$.locale.Tr "never"}}{{end}}</td>
 | 
											<td>{{if .LastOnline}}{{TimeSinceUnix .LastOnline $.locale}}{{else}}{{ctx.Locale.Tr "never"}}{{end}}</td>
 | 
				
			||||||
						<td class="runner-ops">
 | 
											<td class="runner-ops">
 | 
				
			||||||
							{{if .Editable $.RunnerOwnerID $.RunnerRepoID}}
 | 
												{{if .Editable $.RunnerOwnerID $.RunnerRepoID}}
 | 
				
			||||||
							<a href="{{$.Link}}/{{.ID}}">{{svg "octicon-pencil"}}</a>
 | 
												<a href="{{$.Link}}/{{.ID}}">{{svg "octicon-pencil"}}</a>
 | 
				
			||||||
@@ -88,7 +87,7 @@
 | 
				
			|||||||
					{{end}}
 | 
										{{end}}
 | 
				
			||||||
				{{else}}
 | 
									{{else}}
 | 
				
			||||||
					<tr>
 | 
										<tr>
 | 
				
			||||||
						<td class="center aligned" colspan="6">{{.locale.Tr "actions.runners.none"}}</td>
 | 
											<td class="center aligned" colspan="8">{{ctx.Locale.Tr "actions.runners.none"}}</td>
 | 
				
			||||||
					</tr>
 | 
										</tr>
 | 
				
			||||||
				{{end}}
 | 
									{{end}}
 | 
				
			||||||
			</tbody>
 | 
								</tbody>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,12 +18,6 @@
 | 
				
			|||||||
  margin-right: 1em;
 | 
					  margin-right: 1em;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.runner-container .runner-status-online {
 | 
					 | 
				
			||||||
  padding: 0.3em 0.5em;
 | 
					 | 
				
			||||||
  background-color: var(--color-green);
 | 
					 | 
				
			||||||
  color: var(--color-white);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
.runner-container .runner-new-text {
 | 
					.runner-container .runner-new-text {
 | 
				
			||||||
  color: var(--color-white);
 | 
					  color: var(--color-white);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user