feat: show no runners available

This commit is contained in:
Jason Song 2023-01-06 15:33:02 +08:00
parent 7a4d4f0edf
commit e61d655929
No known key found for this signature in database
GPG Key ID: 8402EEEE4511A8B5
2 changed files with 38 additions and 31 deletions

View File

@ -3271,6 +3271,7 @@ runners.delete_runner_failed = Failed to delete runner
runners.delete_runner_header = Confirm to delete this runner runners.delete_runner_header = Confirm to delete this runner
runners.delete_runner_notice = If a task is running on this runner, it will be terminated and mark as failed. It may break building workflow. runners.delete_runner_notice = If a task is running on this runner, it will be terminated and mark as failed. It may break building workflow.
runners.delete_runner_confirm = Delete this runner runners.delete_runner_confirm = Delete this runner
runners.none = No runners available
runners.status.unspecified = Unknown runners.status.unspecified = Unknown
runners.status.idle = Idle runners.status.idle = Idle
runners.status.active = Active runners.status.active = Active

View File

@ -55,6 +55,7 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{{if .Runners}}
{{range .Runners}} {{range .Runners}}
<tr> <tr>
<td> <td>
@ -87,6 +88,11 @@
</td> </td>
</tr> </tr>
{{end}} {{end}}
{{else}}
<tr>
<td class="center aligned" colspan="6">{{.locale.Tr "actions.runners.none"}}</td>
</tr>
{{end}}
</tbody> </tbody>
</table> </table>
</div> </div>