Add control panel template file
authorCharles Connell <charles@connells.org>
Wed, 19 Mar 2014 14:18:20 +0000 (10:18 -0400)
committerCharles Connell <charles@connells.org>
Wed, 19 Mar 2014 14:18:20 +0000 (10:18 -0400)
karmaworld/templates/control_panel.html [new file with mode: 0644]

diff --git a/karmaworld/templates/control_panel.html b/karmaworld/templates/control_panel.html
new file mode 100644 (file)
index 0000000..d98582e
--- /dev/null
@@ -0,0 +1,18 @@
+{% extends "account/base.html" %}
+
+{% load i18n %}
+{% load account %}
+
+{% block head_title %}Control Panel{% endblock %}
+
+{% block content %}
+<h1>Hello {% user_display user %}!</h1>
+
+   <h2>Control Panel</h2>
+    
+  <h2><p><a href="{% url 'account_email' %}">Add/Remove Emails</a></p></h2>
+  <h2><p><a href="{% url 'account_change_password' %}">Change Password</a></p></h2>
+  <h2><p><a href="{% url 'socialaccount_connections' %}">Social Accounts</a></p></h2>
+{% endblock %}
+