2026-03-24 22:57:12 -04:00
|
|
|
{% extends "core/base.html" %}
|
|
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
|
|
{% block title_text %}Game Kit{% endblock title_text %}
|
|
|
|
|
{% block header_text %}<span>Game</span>Kit{% endblock header_text %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
<div class="gameboard-page">
|
2026-04-04 13:49:48 -04:00
|
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_game_kit_menu" %}
|
|
|
|
|
{% include "apps/gameboard/_partials/_game_kit_applet_menu.html" %}
|
2026-03-24 22:57:12 -04:00
|
|
|
<div id="id_game_kit_applets_container">
|
2026-04-04 13:49:48 -04:00
|
|
|
{% include "apps/gameboard/_partials/_game_kit_sections.html" %}
|
2026-03-24 22:57:12 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<dialog id="id_tarot_fan_dialog">
|
|
|
|
|
<div class="tarot-fan-wrap">
|
|
|
|
|
<button id="id_fan_prev" class="fan-nav fan-nav--prev" aria-label="Previous card">‹</button>
|
|
|
|
|
<div id="id_fan_content" class="tarot-fan"></div>
|
2026-04-30 21:01:52 -04:00
|
|
|
<button id="id_fan_flip" class="btn btn-reveal fan-flip-btn" type="button">FLIP</button>
|
|
|
|
|
<div class="fan-stage-block sig-stat-block" id="id_fan_stage_block">
|
|
|
|
|
<button class="btn btn-reverse spin-btn" type="button">SPIN</button>
|
|
|
|
|
<button class="btn btn-info fyi-btn" type="button">FYI</button>
|
|
|
|
|
<div class="stat-face stat-face--upright">
|
|
|
|
|
<p class="stat-face-label">Emanation</p>
|
|
|
|
|
<ul class="stat-keywords" id="id_fan_stat_upright"></ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="stat-face stat-face--reversed">
|
|
|
|
|
<p class="stat-face-label">Reversal</p>
|
|
|
|
|
<ul class="stat-keywords" id="id_fan_stat_reversed"></ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="sig-info" id="id_fan_fyi_panel" style="display:none">
|
|
|
|
|
<div class="sig-info-header">
|
|
|
|
|
<h4 class="sig-info-title"></h4>
|
|
|
|
|
<p class="sig-info-type"></p>
|
|
|
|
|
</div>
|
|
|
|
|
<p class="sig-info-effect"></p>
|
|
|
|
|
<span class="sig-info-index"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<button class="btn btn-nav-left fyi-prev" type="button">PRV</button>
|
|
|
|
|
<button class="btn btn-nav-right fyi-next" type="button">NXT</button>
|
|
|
|
|
</div>
|
2026-03-24 22:57:12 -04:00
|
|
|
<button id="id_fan_next" class="fan-nav fan-nav--next" aria-label="Next card">›</button>
|
|
|
|
|
</div>
|
|
|
|
|
</dialog>
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
|
|
{% block scripts %}
|
2026-04-30 21:01:52 -04:00
|
|
|
<script src="{% static 'apps/epic/stage-card.js' %}"></script>
|
2026-03-24 22:57:12 -04:00
|
|
|
<script src="{% static 'apps/gameboard/game-kit.js' %}"></script>
|
|
|
|
|
{% endblock scripts %}
|