2020-12-09 21:25:31 +00:00
|
|
|
{% 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>
|
2020-12-31 22:21:05 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<a href="/characters/{{username}}/{{id}}/edit">Edit Character</a>
|
|
|
|
</div>
|
2020-12-09 21:25:31 +00:00
|
|
|
{% endblock content %}
|