From 67b2ae290336476ba1ff04519290324a9e87d9ba Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 5 Mar 2010 17:34:10 +0100 Subject: [PATCH] Add some missing templates --- templates/404.html | 0 templates/sso/user.html | 62 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 templates/404.html create mode 100644 templates/sso/user.html diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/sso/user.html b/templates/sso/user.html new file mode 100644 index 0000000..8450143 --- /dev/null +++ b/templates/sso/user.html @@ -0,0 +1,62 @@ +{% 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.username }}******{{ 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 %}