{% extends "base.html" %} {% block title %}Settings - Tessera{% endblock %} {% block content %}

Settings

Account Information

Name: {{ current_user.name }}

Email: {{ current_user.email }}

Role: {{ current_user.role }}

Notification Preferences

{% if not slack_configured %}
Slack not configured. {% if current_user.role == 'admin' %} Set SLACK_WEBHOOK_URL in your .env file to enable Slack notifications. {% else %} Contact your administrator to enable Slack notifications. {% endif %}
{% else %}
Slack is configured. Select "Slack" or "Both" above to receive Slack notifications.
{% endif %}
{% if current_user.role == 'admin' or current_user.role == 'team_admin' %}

Admin Actions

{% if current_user.role == 'admin' %} As a Tessera admin, you have full access to all teams, users, and settings. {% else %} As a team admin, you can manage users and assets within your team. {% endif %}

Manage Users | Manage Teams
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}