2020-12-01 21:32:16 +00:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-12-09 21:25:31 +00:00
|
|
|
<h1>Core Sheet</h1>
|
2020-12-01 21:32:16 +00:00
|
|
|
<div>
|
|
|
|
<h1>Character {{name}}</h1>
|
|
|
|
<h3>User: {{username}}</h3>
|
2020-12-08 22:26:47 +00:00
|
|
|
<p>System: {{data_type}}</h3>
|
2020-12-08 08:47:34 +00:00
|
|
|
<p>Strength: {{sheet.strength}}</p>
|
2020-12-01 21:32:16 +00:00
|
|
|
</div>
|
2020-12-27 21:49:08 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<a href="/characters/{{username}}/{{id}}/edit">Edit Character</a>
|
|
|
|
</div>
|
2020-12-01 21:32:16 +00:00
|
|
|
{% endblock content %}
|