Web (Storycraft): pop h3 titles on the sections of the game summaries
This commit is contained in:
parent
bfe88f28cd
commit
cdf6b3db95
@ -158,6 +158,10 @@ body {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*
|
||||
vi:tabstop=4:expandtab:autoindent
|
||||
*/
|
||||
|
@ -1,11 +1,13 @@
|
||||
{% autoescape on %}
|
||||
<div class="gameitem">
|
||||
<h3 class="hidden">Game Info</h3>
|
||||
<ul class="gameinfo">
|
||||
<li class="gameid"><span><a href="{% url game_index game.id %}">{{ game.id }}: {{ game.start_time }} – {{ game.end_time }}</a></span></li>
|
||||
<li class="gamestatus"><span>{{ game.status }}</span></li>
|
||||
<li class="gamecode"><span>o:{{ game.round_mode }}[{{ game.game_length }}],{{ game.line_length }},{{ game.random_method }},{{ game.lines_per_turn }}</span></li>
|
||||
</ul>
|
||||
{% if players %}
|
||||
<h3 class="hidden">Player List</h3>
|
||||
<ul class="gameplayers">
|
||||
{% for player in players %}
|
||||
<li>{{ player.nick }}</li>
|
||||
|
Loading…
Reference in New Issue
Block a user