fix: link to active connection
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is failing

This commit is contained in:
xuu 2023-05-29 12:44:59 -06:00
parent d315b70011
commit d500c4932a
Signed by: xuu
GPG Key ID: C63E6D61F3035024

View File

@ -45,9 +45,9 @@
<div style='float:right'> <div style='float:right'>
{{ if $user.Active }} {{ if $user.Active }}
<a href="/user/{{ $user.Name }}" class='btn btn-success'>Active</a> <a href="https://{{ $user.Name }}.{{ $args.DomainName }}" class='btn btn-success'>Active</a>
{{ else }} {{ else }}
<a href="/user/{{ $user.Name }}" class='btn btn-danger'>Disconnected</a> <button disabled class='btn btn-danger'>Disconnected</button>
{{ end }} {{ end }}
</div> </div>
</div> </div>