{% extends "base.html" %} {% block title %}Profile — AppManager{% endblock %} {% block content %}
{{ user.name[0].upper() if user.name else user.email[0].upper() }}

{{ user.name or user.email }} {{ render_user_flair_badge(user.id) }}

{{ user.email }}

role: {{ user.role }}

Your Accessible Applications

{% if apps %}
{% for app in apps %}

{{ app.name }}

/apps/{{ app.slug }}

{% endfor %}
{% else %}

No Accessible Applications

You do not currently have access to any installed apps.

{% endif %} {% endblock %}