Web (Storycraft): change the game ID block to show dates, not the creator

This commit is contained in:
Brian S. Stephan 2011-02-20 18:43:59 -06:00
parent 9240631775
commit 07b76f3e5e
2 changed files with 3 additions and 3 deletions

View File

@ -94,13 +94,13 @@ body {
}
.gameitem .gameinfo li.gameid {
width: 30%;
width: 45%;
background: #e0e0e0;
color: #333333;
}
.gameitem .gameinfo li.gamestatus {
width: 40%;
width: 25%;
}
.gameitem .gameinfo li.gamecode {

View File

@ -1,7 +1,7 @@
{% autoescape on %}
<div class="gameitem">
<ul class="gameinfo">
<li class="gameid"><span><a href="{% url game_index game.id %}">{{ game.id }} &mdash; started by {{ game.owner_nick }}</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="gamecode"><span>o:{{ game.round_mode }}[{{ game.game_length }}],{{ game.line_length }},{{ game.random_method }},{{ game.lines_per_turn }}</span></li>
</ul>