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

Your Profile

Username: {{ user.username }}
Email: {{ user.email }}

{% if eveaccounts %}

External Service Accounts

This is a list of all your current external service accounts, to create a login for a service click the Add Service link

{% if srvaccounts %} {% for acc in srvaccounts %} {% endfor %}
ServiceUsernameURLActiveActions
{{ acc.service }} {{ acc.service_uid }} {{ acc.service.url }} {% if acc.active %}Yes{% else %}No{% endif %} {% if acc.active %} Reset /  Delete {% if acc.service.provide_login %}  / Login {% endif %} {% endif %}
{% endif %}

Add Service


{% endif %}

Eve API Keys

Adding a 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 eveaccounts %} {% for acc in eveaccounts %} {% endfor %}
User IDAPI KeyDescriptionActiveLast UpdatedActions
{{ acc.api_user_id }} {{ acc.api_key }} {{ acc.description }} {{ acc.api_status_description }} {{ acc.api_last_updated|naturaltimediff }} RefreshLogsDelete
{% endif %}

Add a Eve API key


Reddit Accounts

This is a list of all your current linked Reddit accounts

{% if redditaccounts %}

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 redditaccounts %} {% endfor %}
UsernameCreated DateValidated
{{ acc.username }} {{ acc.date_created }} {% if acc.validated %}Yes{% else %}No (Validate){% endif %}
{% endif %}

Add a Reddit account

If you encounter any errors during using this service, copy the massive error message into Pastebin and give Matalok a good kicking on IRC/Jabber/Email or on the Forums.

{% endblock %}