77 lines
2.4 KiB
Plaintext
77 lines
2.4 KiB
Plaintext
|
{% import "characters/edit_character_macros" as macros %}
|
||
|
{% extends "base" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
font-family: Liberation Sans, Arial;
|
||
|
}
|
||
|
|
||
|
#attributes {
|
||
|
padding: 4px;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
#attributes .attributes-section {
|
||
|
border: 1px solid gray;
|
||
|
border-collapse: collapse;
|
||
|
display: table-cell;
|
||
|
}
|
||
|
|
||
|
.attribute {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.attribute label {
|
||
|
display: inline-block;
|
||
|
float: left;
|
||
|
clear: left;
|
||
|
width: 10em;
|
||
|
text-align: right;
|
||
|
vertical-align: text-bottom;
|
||
|
padding: 8px;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.attribute input {
|
||
|
max-width: 4em;
|
||
|
display: inline-block;
|
||
|
float: left;
|
||
|
padding: 8px;
|
||
|
border: none;
|
||
|
background-color: lightgray;
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<script src="https://cdn.jsdelivr.net/npm/protobufjs@6.10.2/dist/protobuf.min.js"></script>
|
||
|
<script defer type="text/javascript" src="/scripts/api.js"></script>
|
||
|
<script defer type="text/javascript" src="/scripts/characters/edit.js"></script>
|
||
|
<h1>Core Sheet</h1>
|
||
|
<div>
|
||
|
<h1>Name: <input type="text" value="{{name}}" /></h1>
|
||
|
<p>System: {{data_type}}</p>
|
||
|
<div id="attributes">
|
||
|
<div class="attributes-section" id="mentalAttributes">
|
||
|
{{ macros::attribute(name="Intelligence", value=sheet.intelligence) }}
|
||
|
{{ macros::attribute(name="Wits", value=sheet.wits) }}
|
||
|
{{ macros::attribute(name="Resolve", value=sheet.resolve) }}
|
||
|
</div>
|
||
|
|
||
|
<div class="attributes-section" id="physicalAttributes">
|
||
|
{{ macros::attribute(name="Strength", value=sheet.strength) }}
|
||
|
{{ macros::attribute(name="Dexterity", value=sheet.dexterity) }}
|
||
|
{{ macros::attribute(name="Stamina", value=sheet.stamina) }}
|
||
|
</div>
|
||
|
|
||
|
<div class="attributes-section" id="socicalAttributes">
|
||
|
{{ macros::attribute(name="Presence", value=sheet.presence) }}
|
||
|
{{ macros::attribute(name="Manipulation", value=sheet.manipulation) }}
|
||
|
{{ macros::attribute(name="Composure", value=sheet.composure) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock content %}
|