Files
python-tdd/src/templates/apps/gameboard/room.html

18 lines
654 B
HTML
Raw Normal View History

{% extends "core/base.html" %}
{% block title_text %}Gameboard{% endblock title_text %}
{% block header_text %}<span>Game</span>room{% endblock header_text %}
{% block content %}
<div class="room-page">
<div class="room-shell">
{% comment "game room content" %}gaussian blur + darkening (cf., e.g., tooltip effect) {% endcomment %}
<div class="room-table"></div>
</div>
{% if room.gate_status == "GATHERING" %}
{% include "apps/gameboard/_partials/_gatekeeper.html" %}
{% endif %}
{% include "apps/gameboard/_partials/_room_gear.html" %}
</div>
{% endblock content %}