36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | <!DOCTYPE html> | ||
|  | <html lang="en"> | ||
|  | <head> | ||
|  |     <title>{{ player_name }}'s Tracker</title> | ||
|  |     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/checksfinderTracker.css') }}" /> | ||
|  |     <script type="application/ecmascript" src="{{ url_for('static', filename='assets/checksfinderTracker.js') }}"></script> | ||
|  | </head> | ||
|  | 
 | ||
|  | <body> | ||
|  |     <div id="player-tracker-wrapper" data-tracker="{{ room.tracker|suuid }}"> | ||
|  |         <table id="inventory-table"> | ||
|  |             <tr class="column-headers"> | ||
|  |                 <td colspan="2">Checks Available:</td> | ||
|  |                 <td colspan="2">Map Bombs:</td> | ||
|  |             </tr> | ||
|  |             <tr> | ||
|  |                 <td><img alt="Checks Available" src="{{ icons['Checks Available'] }}" /></td> | ||
|  |                 <td>{{ checks_available }}</td> | ||
|  |                 <td><img alt="Bombs Remaining" src="{{ icons['Map Bombs'] }}" /></td> | ||
|  |                 <td>{{ bombs_display }}/20</td> | ||
|  |             </tr> | ||
|  |             <tr class="column-headers"> | ||
|  |                 <td colspan="2">Map Width:</td> | ||
|  |                 <td colspan="2">Map Height:</td> | ||
|  |             </tr> | ||
|  |             <tr> | ||
|  |                 <td><img alt="Map Width" src="{{ icons['Map Width'] }}" /></td> | ||
|  |                 <td>{{ width_display }}/10</td> | ||
|  |                 <td><img alt="Map Height" src="{{ icons['Map Height'] }}" /></td> | ||
|  |                 <td>{{ height_display }}/10</td> | ||
|  |             </tr> | ||
|  |         </table> | ||
|  |     </div> | ||
|  | </body> | ||
|  | </html> |