{% extends "layout.html" %} {% block title %} Manage Profile {% endblock %} {% block content %} {% include 'header.html' %}

User Info

{% if user['avatar'] %}
{% endif %}
{{user['username']}}

Last login date: {{user['last_login_date']}} UTC

Discord User ID: {{user['snowflake']}}

{% if streams is defined %}
My streams
{% for stream in streams %} {% if stream['start_date'] %} {% else %} {% endif %} {% if stream["duration"] %} {% else %} {% endif %} {% endfor %}
Date Title Duration Status
{{ stream['start_date'] }} UTCNot Started Yet{{ stream['title'] }}{{ stream['duration'] }}N/A
{% if not stream["duration"] and stream["start_date"] %} LIVE {% endif %} {% if stream["archivable"] %} Archived {% else %} Not Archived {% endif %} {% if stream["unlisted"] %} Unlisted {% endif %}
Edit Stream {% if not stream["duration"] and not stream["unlisted"] %} Play {% else %} Play {% endif %}
{{ stream["description"] | nl2br }}
Stream Key: {{ stream["stream_key"] }} Unique ID: {{ stream["unique_id"] }}
{% endif %} {% endblock %}