{% extends "base.html" %} {% block title %}Nextcloud MCP Server{% endblock %} {% block extra_head %} {% endblock %} {% block extra_styles %} /* Smooth htmx transitions */ .htmx-swapping { opacity: 0; transition: opacity 200ms ease-out; } .htmx-settling { opacity: 1; transition: opacity 200ms ease-in; } /* Logout button styling */ .logout-section { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--color-border); } {% endblock %} {% block content %}

User Information

{{ user_info_tab_html|safe }}
{% if show_vector_sync_tab %}

Vector Sync Status

{{ vector_sync_tab_html|safe }}

Vector Visualization

Loading vector visualization...

{% endif %} {% if show_webhooks_tab %}

Webhook Management

{{ webhooks_tab_html|safe }}
{% endif %}
{% endblock %}