From 86948dc88d34249eb09cccc3b5862c43372dca2c Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 17 Mar 2010 00:28:51 +0000 Subject: [PATCH] Added missing templates --- templates/sso/character.html | 22 ++++++++++++++++++++++ templates/sso/characterlist.html | 18 ++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 templates/sso/character.html create mode 100644 templates/sso/characterlist.html diff --git a/templates/sso/character.html b/templates/sso/character.html new file mode 100644 index 0000000..a038a36 --- /dev/null +++ b/templates/sso/character.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} + +{% block content %} + +

{{ character.name }}

+ + + + + + + + + + +
StatValue
Intelligence {{ character.attrib_intelligence }}
Memory{{ character.attrib_memory }}
Charisma{{ character.attrib_charisma }}
Perception{{ character.attrib_perception }}
Willpower{{ character.attrib_willpower }}
+ +{% endblock %} diff --git a/templates/sso/characterlist.html b/templates/sso/characterlist.html new file mode 100644 index 0000000..f26eba4 --- /dev/null +++ b/templates/sso/characterlist.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block content %} + +

Character List

+ +{% if characters %} + + +{% for char in characters %} + + + +{% endfor %} +
Character NameCorp
{{ char.name }}{{ char.corp }}
+{% endif %} + +{% endblock %}