Files
python-tdd/src/templates/apps/billboard/billboard.html
Disco DeDisco 2fd3ec9ab2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
added header_text to billboard.html; restored L+R .container padding after last fix (still 0 T+B)
2026-03-22 15:06:54 -04:00

20 lines
544 B
HTML

{% extends "core/base.html" %}
{% block title_text %}Billboard{% endblock title_text %}
{% block header_text %}<span>Bill</span>board{% endblock header_text %}
{% block content %}
<div class="content billboard-page">
<h2>My Games</h2>
<ul class="game-list">
{% for room in my_rooms %}
<li>
<a href="{% url 'billboard:scroll' room.id %}">{{ room.name }}</a>
</li>
{% empty %}
<li><small>No games yet.</small></li>
{% endfor %}
</ul>
</div>
{% endblock %}