Files
python-tdd/src/templates/apps/gameboard/_partials/_applet-my-games.html

13 lines
422 B
HTML
Raw Normal View History

<section
id="id_applet_my_games"
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
>
<h2>My Games</h2>
<ul class="game-list">
{% for room in my_games %}
<li><a href="{% url 'epic:gatekeeper' room.id %}">{{ room.name }}</a></li>
{% empty %}
<li><small>No games yet</small></li>
{% endfor %}
</ul>
</section>