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 %}