{% extends "base.html" %} {% block content %}

{{user.username}}'s Profile

Username: {{ user.username }}
Email: {{ user.email }}
{% if is_admin %}

Service Accounts

{% if services %} {% for acc in services %} {% endfor %}
ServiceUsernamePasswordActive
{{ acc.service }} {{ acc.service_uid }} ****** {{ acc.active }}
{% endif %}

Eve API Keys

{% if eveaccounts %} {% for acc in eveaccounts %} {% endfor %}
User IDAPI KeyDescriptionActive
{{ acc.api_user_id }} {{ acc.api_key }} {{ acc.description }} {{ acc.api_status }}
{% endif %}
{% if characters %} {% for char in characters %} {% endfor %}
Character NameCorp
{{ char.name }} {{ char.corp }}
{% endif %}

Reddit Accounts

{% if reddits %} {% for acc in reddits %} {% endfor %}
UsernameCreated Date
{{ acc.username }} {{ acc.date_created }}
{% endif %} {% endif %} {% endblock %}