22 lines
		
	
	
		
			559 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			559 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% autoescape on %}
 | |
|       <div class="storyblock">
 | |
|         {% if game.is_completed %}
 | |
|         <div class="gamestory">
 | |
|           <p>
 | |
|           {% for line in lines %}
 | |
|           <span title="{{ line.player.nick }} @ {{ line.time }}">{{ line }}</span>
 | |
|           {% endfor %}
 | |
|           </p>
 | |
|         </div>
 | |
|         {% else %}
 | |
|         <div class="gamenostory">
 | |
|           <p>This game has not been completed yet. Come back later (or get to work).</p>
 | |
|         </div>
 | |
|         {% endif %}
 | |
|       </div>
 | |
| 
 | |
| <!--
 | |
|   vi:tabstop=2:expandtab:autoindent
 | |
|  -->
 | |
| {% endautoescape %}
 |