45 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			45 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% extends "multiTracker.html" %} | ||
|  | {% block custom_table_headers %} | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Logistic_science_pack.png/32px-Logistic_science_pack.png" | ||
|  |          alt="Logistic Science Pack"> | ||
|  | </th> | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Military_science_pack.png/32px-Military_science_pack.png" | ||
|  |          alt="Military Science Pack"> | ||
|  | </th> | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Chemical_science_pack.png/32px-Chemical_science_pack.png" | ||
|  |          alt="Chemical Science Pack"> | ||
|  | </th> | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Production_science_pack.png/32px-Production_science_pack.png" | ||
|  |          alt="Production Science Pack"> | ||
|  | </th> | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Utility_science_pack.png/32px-Utility_science_pack.png" | ||
|  |          alt="Utility Science Pack"> | ||
|  | </th> | ||
|  | <th class="center-column"> | ||
|  |     <img src="https://wiki.factorio.com/images/thumb/Space_science_pack.png/32px-Space_science_pack.png" | ||
|  |          alt="Space Science Pack"> | ||
|  | </th> | ||
|  | {% endblock %} | ||
|  | {% block custom_table_row scoped  %} | ||
|  | {% if games[player] == "Factorio" %} | ||
|  | <td class="center-column">{% if inventory[team][player][131161] or inventory[team][player][131281] %}✔{% endif %}</td> | ||
|  | <td class="center-column">{% if inventory[team][player][131172] or inventory[team][player][131281] > 1%}✔{% endif %}</td> | ||
|  | <td class="center-column">{% if inventory[team][player][131195] or inventory[team][player][131281] > 2%}✔{% endif %}</td> | ||
|  | <td class="center-column">{% if inventory[team][player][131240] or inventory[team][player][131281] > 3%}✔{% endif %}</td> | ||
|  | <td class="center-column">{% if inventory[team][player][131240] or inventory[team][player][131281] > 4%}✔{% endif %}</td> | ||
|  | <td class="center-column">{% if inventory[team][player][131220] or inventory[team][player][131281] > 5%}✔{% endif %}</td> | ||
|  | {% else %} | ||
|  | <td class="center-column">❌</td> | ||
|  | <td class="center-column">❌</td> | ||
|  | <td class="center-column">❌</td> | ||
|  | <td class="center-column">❌</td> | ||
|  | <td class="center-column">❌</td> | ||
|  | <td class="center-column">❌</td> | ||
|  | {% endif %} | ||
|  | {% endblock%} |