26 lines
710 B
HTML
26 lines
710 B
HTML
{% extends 'partials/base.html' %}
|
|
|
|
{% block name %}menu{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<form method="post">
|
|
{% if deck_status == "old" %}
|
|
<button type="submit" name="menu" value="new_session">Continue</button>
|
|
{% else %}
|
|
<button type="submit" name="menu" value="new_session">Start</button>
|
|
{% endif %}
|
|
|
|
<button type="submit" name="menu" value="matches">Matches</button>
|
|
|
|
<button type="submit" name="menu" value="upload">Upload</button>
|
|
|
|
<button type="submit" name="menu" value="settings">Settings</button>
|
|
|
|
<button type="submit" name="menu" value="instructions">Instructions</button>
|
|
|
|
<!-- <button type="submit" name="menu" value="about">About</button> -->
|
|
</form>
|
|
</main>
|
|
{% endblock %}
|