27 lines
		
	
	
		
			606 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			606 B
		
	
	
	
		
			HTML
		
	
	
	
| <div class="panel panel-default">
 | |
| 	<div class="panel-heading"><h3 class="panel-title">QRGs</h3></div>
 | |
| 	<div class="panel-body">
 | |
| 		<p>The following frequencies may be used in this contest</p>
 | |
| 		<table class="table table-inverse">
 | |
| 			<thead class="thead-inverse">
 | |
| 				<tr>
 | |
| 					<th>Channel</th>
 | |
| 					<th>Band</th>
 | |
| 					<th>QRG</th>
 | |
| 					<th>Note</th>
 | |
| 				</tr>
 | |
| 			</thead>
 | |
| 			<tbody>
 | |
| 				{% for qrg in qrgs %}
 | |
| 					<tr>
 | |
| 						<td>{{ qrg.channel }}</td>
 | |
| 						<td>{{ qrg.band }}</td>
 | |
| 						<td>{{ qrg.qrg }}</td>
 | |
| 						<td>{{ qrg.note }}</td>
 | |
| 					</tr>
 | |
| 				{% endfor %}
 | |
| 			</tbody>
 | |
| 		</table>
 | |
| 	</div>
 | |
| </div>
 |