Web (Storycraft): pop h3 titles on the sections of the game summaries

This commit is contained in:
Brian S. Stephan 2011-02-22 20:22:20 -06:00
parent bfe88f28cd
commit cdf6b3db95
2 changed files with 6 additions and 0 deletions

View File

@ -158,6 +158,10 @@ body {
font-size: 8pt; font-size: 8pt;
} }
.hidden {
display: none;
}
/* /*
vi:tabstop=4:expandtab:autoindent vi:tabstop=4:expandtab:autoindent
*/ */

View File

@ -1,11 +1,13 @@
{% autoescape on %} {% autoescape on %}
<div class="gameitem"> <div class="gameitem">
<h3 class="hidden">Game Info</h3>
<ul class="gameinfo"> <ul class="gameinfo">
<li class="gameid"><span><a href="{% url game_index game.id %}">{{ game.id }}: {{ game.start_time }} &ndash; {{ game.end_time }}</a></span></li> <li class="gameid"><span><a href="{% url game_index game.id %}">{{ game.id }}: {{ game.start_time }} &ndash; {{ game.end_time }}</a></span></li>
<li class="gamestatus"><span>{{ game.status }}</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> <li class="gamecode"><span>o:{{ game.round_mode }}[{{ game.game_length }}],{{ game.line_length }},{{ game.random_method }},{{ game.lines_per_turn }}</span></li>
</ul> </ul>
{% if players %} {% if players %}
<h3 class="hidden">Player List</h3>
<ul class="gameplayers"> <ul class="gameplayers">
{% for player in players %} {% for player in players %}
<li>{{ player.nick }}</li> <li>{{ player.nick }}</li>