mirror of
https://github.com/iFargle/headscale-webui.git
synced 2026-01-03 19:23:35 +01:00
test
This commit is contained in:
23
renderer.py
23
renderer.py
@@ -524,4 +524,25 @@ def build_preauth_key_table(user_name):
|
||||
preauth_keys_collection = preauth_keys_collection+"""</table>
|
||||
</li>
|
||||
"""
|
||||
return preauth_keys_collection
|
||||
return preauth_keys_collection
|
||||
|
||||
def render_oidc_nav_dropdown() {
|
||||
|
||||
htmlPayload = """
|
||||
<!-- Dropdown Structure -->
|
||||
<ul id="dropdown1" class="dropdown-content">
|
||||
<li><a href="#!">Username</a></li>
|
||||
<li><a href="#!">Email</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="#!">Logout</a></li>
|
||||
</ul>
|
||||
|
||||
<li>
|
||||
<a class="dropdown-trigger" href="#!" data-target="dropdown1">
|
||||
<i class="material-icons right">account_circle</i>
|
||||
</a>
|
||||
</li>
|
||||
"""
|
||||
|
||||
return Markup(htmlPayload)
|
||||
}
|
||||
Reference in New Issue
Block a user