| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  | <html lang="en"> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  |     <title>{{ player_name }}'s Tracker</title> | 
					
						
							| 
									
										
										
										
											2021-08-04 15:09:20 -05:00
										 |  |  |     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/minecraftTracker.css') }}"/> | 
					
						
							|  |  |  |     <script type="application/ecmascript" src="{{ url_for('static', filename='assets/minecraftTracker.js') }}"></script> | 
					
						
							| 
									
										
										
										
											2021-08-04 12:28:57 -05:00
										 |  |  |     <link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/minecraftia" type="text/css"/> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  | </head> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <body> | 
					
						
							|  |  |  |     <div id="player-tracker-wrapper" data-tracker="{{ room.tracker|suuid }}"> | 
					
						
							|  |  |  |         <table id="inventory-table"> | 
					
						
							|  |  |  |             <tr> | 
					
						
							|  |  |  |                 <td><img src="{{ tools_url }}" class="{{ 'acquired' }}" title="Progressive Tools" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ weapons_url }}" class="{{ 'acquired' }}" title="Progressive Weapons" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ armor_url }}" class="{{ 'acquired' }}" title="Progressive Armor" /></td> | 
					
						
							| 
									
										
										
										
											2021-08-04 17:34:55 -05:00
										 |  |  |                 <td><img src="{{ resource_crafting_url }}" class="{{ 'acquired' if 'Progressive Resource Crafting' in acquired_items }}"  | 
					
						
							|  |  |  |                     title="Progressive Resource Crafting" /></td> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |                 <td><img src="{{ icons['Brewing Stand'] }}" class="{{ 'acquired' if 'Brewing' in acquired_items }}" title="Brewing" /></td> | 
					
						
							|  |  |  |                 <td> | 
					
						
							|  |  |  |                     <div class="counted-item"> | 
					
						
							|  |  |  |                         <img src="{{ icons['Ender Pearl'] }}" class="{{ 'acquired' if '3 Ender Pearls' in acquired_items }}" title="Ender Pearls" /> | 
					
						
							|  |  |  |                         <div class="item-count">{{ pearls_count }}</div> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </td> | 
					
						
							| 
									
										
										
										
											2021-08-04 17:34:55 -05:00
										 |  |  |             </tr> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |             <tr> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Bucket'] }}" class="{{ 'acquired' if 'Bucket' in acquired_items }}" title="Bucket" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Bow'] }}" class="{{ 'acquired' if 'Archery' in acquired_items }}" title="Archery" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Shield'] }}" class="{{ 'acquired' if 'Shield' in acquired_items }}" title="Shield" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Red Bed'] }}" class="{{ 'acquired' if 'Bed' in acquired_items }}" title="Bed" /></td> | 
					
						
							| 
									
										
										
										
											2021-08-04 17:34:55 -05:00
										 |  |  |                 <td><img src="{{ icons['Water Bottle'] }}" class="{{ 'acquired' if 'Bottles' in acquired_items }}" title="Bottles" /></td> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |                 <td> | 
					
						
							|  |  |  |                     <div class="counted-item"> | 
					
						
							|  |  |  |                         <img src="{{ icons['Netherite Scrap'] }}" class="{{ 'acquired' if '8 Netherite Scrap' in acquired_items }}" title="Netherite Scrap" /> | 
					
						
							|  |  |  |                         <div class="item-count">{{ scrap_count }}</div> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </td> | 
					
						
							|  |  |  |             </tr> | 
					
						
							|  |  |  |             <tr> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Flint and Steel'] }}" class="{{ 'acquired' if 'Flint and Steel' in acquired_items }}" title="Flint and Steel" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Enchanting Table'] }}" class="{{ 'acquired' if 'Enchanting' in acquired_items }}" title="Enchanting" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Fishing Rod'] }}" class="{{ 'acquired' if 'Fishing Rod' in acquired_items }}" title="Fishing Rod" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Campfire'] }}" class="{{ 'acquired' if 'Campfire' in acquired_items }}" title="Campfire" /></td> | 
					
						
							|  |  |  |                 <td><img src="{{ icons['Dragon Head'] }}" class="{{ 'acquired' if game_finished }}" title="Ender Dragon" /></td> | 
					
						
							| 
									
										
										
										
											2021-08-04 17:34:55 -05:00
										 |  |  |             </tr> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |         </table> | 
					
						
							|  |  |  |         <table id="location-table"> | 
					
						
							| 
									
										
										
										
											2021-08-04 12:28:57 -05:00
										 |  |  |             {% for area in checks_done %} | 
					
						
							| 
									
										
										
										
											2021-08-04 15:09:20 -05:00
										 |  |  |             <tr class="location-category" id="{{area}}-header"> | 
					
						
							|  |  |  |                 <td>{{ area }} {{'▼' if area != 'Total'}}</td> | 
					
						
							|  |  |  |                 <td class="counter">{{ checks_done[area] }} / {{ checks_in_area[area] }}</td> | 
					
						
							|  |  |  |             </tr> | 
					
						
							|  |  |  |             <tbody class="locations hide" id="{{area}}"> | 
					
						
							|  |  |  |                 {% for location in location_info[area] %} | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |                 <tr> | 
					
						
							| 
									
										
										
										
											2021-08-04 15:09:20 -05:00
										 |  |  |                     <td class="location-name">{{ location }}</td> | 
					
						
							|  |  |  |                     <td class="counter">{{ '✔' if location_info[area][location] else '' }}</td> | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |                 </tr> | 
					
						
							| 
									
										
										
										
											2021-08-04 15:09:20 -05:00
										 |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </tbody> | 
					
						
							| 
									
										
										
										
											2021-08-04 12:28:57 -05:00
										 |  |  |             {% endfor %} | 
					
						
							| 
									
										
										
										
											2021-08-02 18:03:32 -05:00
										 |  |  |         </table> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |