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

{{user.username}}'s Profile

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

Service Accounts

{% if services %} {% for acc in services %} {% endfor %}
ServiceUsernameActive
{{ acc.service }} {{ acc.service_uid }} {% if acc.active %}Yes{% else %}No{% endif %}
{% endif %}
{% if user.application_set.all %}

Applications

{% for app in user.application_set.all %} {% endfor %}
IDCharacterApplied ToStatus
{{ app.id }} {{ app.character }} {{ app.corporation }} {{ app.get_status_display }}
{% endif %}

Eve API Keys

{% if user.eveaccount_set.all %} {% for acc in user.eveaccount_set.all %} {% endfor %}
User IDAPI KeyDescriptionTypeActiveLast Updated
{{ acc.api_user_id }} {{ acc.api_key }} {{ acc.description }} {{ acc.get_api_keytype_display }} {{ acc.get_api_status_display }} {{ acc.api_last_updated|naturaltimediff }}
{% endif %}
{% if characters %} {% for char in characters %} {% endfor %}
Character NameCorp
{{ char.name }} {{ char.corporation }}
{% endif %}

Reddit Accounts

{% if reddits %} {% for acc in reddits %} {% endfor %}
UsernameCreated DateValidated
{{ acc.username }} {{ acc.date_created }} {% if acc.validated %}Yes{% else %}No{% endif %}
{% endif %} {% endif %} {% endblock %}