From 9aef53ab06aca48694d634d1f75f57c8e3989cd3 Mon Sep 17 00:00:00 2001 From: Charles Connell Date: Wed, 19 Mar 2014 10:18:20 -0400 Subject: [PATCH] Add control panel template file --- karmaworld/templates/control_panel.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 karmaworld/templates/control_panel.html diff --git a/karmaworld/templates/control_panel.html b/karmaworld/templates/control_panel.html new file mode 100644 index 0000000..d98582e --- /dev/null +++ b/karmaworld/templates/control_panel.html @@ -0,0 +1,18 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load account %} + +{% block head_title %}Control Panel{% endblock %} + +{% block content %} +

Hello {% user_display user %}!

+ +

Control Panel

+ +

Add/Remove Emails

+

Change Password

+

Social Accounts

+ +{% endblock %} + -- 2.25.1