12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
|
{% extends "base" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Changeling Sheet</h1>
|
||
|
<div>
|
||
|
<h1>Character {{name}}</h1>
|
||
|
<h3>User: {{username}}</h3>
|
||
|
<p>System: {{data_type}}</h3>
|
||
|
<p>Strength: {{sheet.base.strength}}</p>
|
||
|
</div>
|
||
|
{% endblock content %}
|