mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00
13 lines
489 B
HTML
13 lines
489 B
HTML
![]() |
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<section>
|
||
|
<div class="actions-grid">
|
||
|
<a class="action-button primary" href="/build">Build a Deck</a>
|
||
|
<a class="action-button" href="/configs">Run a JSON Config</a>
|
||
|
{% if show_setup %}<a class="action-button" href="/setup">Initial Setup</a>{% endif %}
|
||
|
<a class="action-button" href="/decks">Finished Decks</a>
|
||
|
{% if show_logs %}<a class="action-button" href="/logs">View Logs</a>{% endif %}
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endblock %}
|