outposts: periodically update state of service connection, show state in UI

This commit is contained in:
Jens Langhammer
2020-11-08 21:31:27 +01:00
parent 7e8e3893eb
commit 5cb7f0794e
5 changed files with 49 additions and 3 deletions

View File

@ -48,6 +48,11 @@ class DockerServiceConnectionForm(forms.ModelForm):
fields = ["name", "local", "url", "tls"]
widgets = {
"name": forms.TextInput,
"url": forms.TextInput,
}
labels = {
"url": _("URL"),
"tls": _("TLS"),
}