39 lines
		
	
	
	
		
			896 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			896 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| <html lang='cs'>
 | |
|   <head>
 | |
|     <title>Seznam účastníků</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 	<link rel="stylesheet" type="text/css" href="{% static 'css/printtable.css' %}" />
 | |
|   </head>
 | |
| <body>
 | |
| 
 | |
|   <h1>
 | |
|     {% with object_list|first as afirst %}
 | |
|     {{afirst.soustredeni.misto}}
 | |
|     {% endwith %}
 | |
|     - účastníci  
 | |
|   </h1>
 | |
|   <table>
 | |
|     <tr>
 | |
|         <th nowrap>Jméno</th>
 | |
|         <th nowrap>Maturita</th>
 | |
|         <th nowrap>Mobil</th>
 | |
|         <th class="fill"></th>
 | |
|     </tr>
 | |
|   {% for sous_ucast in object_list %}
 | |
|     <tr>
 | |
|         <td nowrap>{{sous_ucast.resitel}}</td>
 | |
|         <td nowrap>{{sous_ucast.resitel.rok_maturity}}</td>
 | |
|         <td nowrap>{{sous_ucast.resitel.telefon}}</td>
 | |
| 		<td class="fill"></td>
 | |
| 
 | |
|     </tr>
 | |
| 
 | |
|     {% empty %}
 | |
|       Žádní účastníci nebyli...
 | |
|   {% endfor %}
 | |
|   </table>
 | |
|   </ul>
 | |
| </body>
 | |
| </html>
 | |
| 
 |