Some preliminary setup for the Game Settings page

This commit is contained in:
Chris Wilson
2020-08-14 23:45:23 -04:00
parent b47e8cbbf2
commit 4c3f5188e4
6 changed files with 384 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{% extends 'layout.html' %}
{% block head %}
<title>Game Settings</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/game-settings.css") }}" />
<script type="application/ecmascript" src="{{ static_autoversion("assets/js-yaml.min.js") }}"></script>
<script type="application/ecmascript" src="{{ static_autoversion("assets/game-settings.js") }}"></script>
{% endblock %}
{% block body %}
<div id="game-settings" class="main-content">
<h3>Game Settings</h3>
<table>
<tr>
<td colspan="2">
Set a description for this settings file. It will be included if you download a yaml file,
but isn't particularly important otherwise.
</td>
</tr>
<tr>
<td class="option-name"><label for="description">Description:</label></td>
<td class="option-value"><input id="description" /></td>
</tr>
</table>
</div>
{% endblock %}