{% extends "base.html" %} {% load naturaltimediff %} {% load installed %} {% load gargoyle_tags %} {% block title %}Your Profile{% endblock %} {% block content %}

Username: {{ user.username }}
Email: {{ user.email }} (change)
Primary Character: {{ user.get_profile.primary_character }} (change)
Groups: {{ user.groups.all|join:", " }}

Passwords

Change Auth Login Password Change Services Password

Note Changing your services password will change it for all linked sites (forums, wiki, reimbursement tool)

{% if user.eveaccount_set.all %}

Service Accounts

These are services that cannot talk to auth and require a seperate username/password.

{% if user.serviceaccount_set.all %} {% for acc in user.serviceaccount_set.all %} {% endfor %}
ServiceUsernameURLActiveActions
{{ acc.service }} {{ acc.service_uid }} {{ acc.service.url }} {% if acc.active %}Yes{% else %}No{% endif %} {% if acc.active %} {% if acc.service.settings.require_password %}Reset / {% endif %} Delete {% if acc.service.provide_login %} / Login{% endif %} {% endif %}
{% endif %}

Add Service

{% endif %}

Eve API Keys

Adding an Eve API key will allow you to access any services allowed for your corporation. Limited keys are accepted for service validation. API keys are stored for on-going authentication. As the assigned owner of a key you may remove them at any time, but this may affect any existing services you have setup.

{% if user.eveaccount_set.all %} {% for acc in user.eveaccount_set.all %} {% endfor %}
User IDAPI KeyDescriptionTypeActiveLast UpdatedActions
{{ acc.api_user_id }} {{ acc.api_key|slice:":10" }}… {{ acc.description }} {{ acc.get_api_keytype_display }}{% if acc.api_keytype == 4 %} *{% endif %} {{ acc.get_api_status_display }} {{ acc.api_last_updated|naturaltimediff }} {% ifswitch api-disableprocessing %}{% else %}RefreshUpdate Key, {% endifswitch %} Logs{% ifswitch eve-keydelete %},  Delete{% endifswitch %}
{% endif %}

Warning Character API Keys are not included in any authorization checks, you will not be able to submit applications or access any services with them.

{% ifswitch api-disableprocessing %} {% else %} Add a Eve API key Create API Key Force Access Update {% endifswitch %}

{% if "reddit"|installed %} {% ifswitch reddit %}

Reddit Accounts

This is a list of all your current linked Reddit accounts

{% if user.redditaccount_set.all %}

To validate your Reddit account, login on Reddit then click the link next to the account, fill in some text in the message and click send.

{% for acc in user.redditaccount_set.all %} {% endfor %}
UsernameCreated DateValidated
{{ acc.username }} {{ acc.date_created }} {% if acc.validated %}Yes{% else %}No (Validate){% endif %}
{% endif %}

Add a Reddit account {% if user.get_profile.tag_reddit_accounts %}Disable{% else %}Enable{% endif %} Reddit Flare

{% endifswitch %} {% endif %}
{% endblock %}