| 
									
										
										
										
											2020-06-26 19:29:33 +02:00
										 |  |  | {% macro list_rooms(rooms) -%} | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  |     <ul> | 
					
						
							| 
									
										
										
										
											2020-06-26 19:29:33 +02:00
										 |  |  |         {% for room in rooms %} | 
					
						
							| 
									
										
										
										
											2021-11-25 20:48:58 +01:00
										 |  |  |             <li><a href="{{ url_for("host_room", room=room.id) }}">Room #{{ room.id|suuid }}</a></li> | 
					
						
							| 
									
										
										
										
											2020-06-26 19:29:33 +02:00
										 |  |  |         {% endfor %} | 
					
						
							|  |  |  |         {{ caller() }} | 
					
						
							|  |  |  |     </ul> | 
					
						
							| 
									
										
										
										
											2020-07-18 16:25:07 -04:00
										 |  |  | {%- endmacro %} | 
					
						
							| 
									
										
										
										
											2022-02-23 19:16:45 +01:00
										 |  |  | {% macro list_patches_room(room) %} | 
					
						
							| 
									
										
										
										
											2021-05-14 15:25:57 +02:00
										 |  |  |     {% if room.seed.slots %} | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |         <table> | 
					
						
							|  |  |  |             <thead> | 
					
						
							|  |  |  |                 <tr> | 
					
						
							| 
									
										
											  
											
												Website Style Upgrade (#353)
* [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets
* Landing Page Updates
* Markdown updates, colors coming later
* Remove testing theme from FF1
* Color updates for markdown styles
* Updates to generated pages, so many updates
* [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets
* Landing Page Updates
* Markdown updates, colors coming later
* Remove testing theme from FF1
* Color updates for markdown styles
* Updates to generated pages, so many updates
* Seed download page improvements
* Add styles to weighted-settings page
* Minor adjustments to styles
* Revert base theme to grass
* Add more items to ArchipIDLE
* [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets
* Landing Page Updates
* Markdown updates, colors coming later
* Remove testing theme from FF1
* Color updates for markdown styles
* Updates to generated pages, so many updates
* Seed download page improvements
* [WebHost] Update WebHost to include modular themes system, remove unused and outdated assets
* Landing Page Updates
* Markdown updates, colors coming later
* Remove testing theme from FF1
* Color updates for markdown styles
* Updates to generated pages, so many updates
* Add styles to weighted-settings page
* Minor adjustments to styles
* Revert base theme to grass
* Add more items to ArchipIDLE
* Improve Archipidle item name
* [WebHost] Update background images, waiting on jungle.png, added partyTime theme
* [WebHost] Fix tab ordering on landing page, remove islands on screen scale, fix tutorial page width scaling
* [WebHost] Final touches to WebHost
* Improve get_world_theme function, add partyTime theme to ArchipIDLE WebWorld
* Remove sending_visible from AutoWorld
* AP Ocarina of Time Client (#352)
* Core: update jinja (#351)
* some typing and cleaning, mostly in Fill.py (#349)
* some typing and cleaning, mostly in Fill.py
* address missing Option types
* resolve a few TODOs discussed in pull request
* SM: Optimize a bit (#350)
* SM: Optimize a bit
* SM: init bosses only once
* New World Order (#355)
* Core: update jinja
* SM: Optimize a bit
* AutoWorld: import worlds in alphabetical order, to be predictable rather than arbitrary
Co-authored-by: Hussein Farran <hmfarran@gmail.com>
* Remove references to Z5Client in English OoT setup guide
* Prevent markdown code blocks from overflowing their container
Co-authored-by: espeon65536 <81029175+espeon65536@users.noreply.github.com>
Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
Co-authored-by: Doug Hoskisson <beauxq@users.noreply.github.com>
Co-authored-by: Hussein Farran <hmfarran@gmail.com>
											
										 
											2022-03-28 20:12:17 -04:00
										 |  |  |                     <th>Id</th> | 
					
						
							|  |  |  |                     <th>Name</th> | 
					
						
							|  |  |  |                     <th>Game</th> | 
					
						
							|  |  |  |                     <th>Download Link</th> | 
					
						
							|  |  |  |                     <th>Tracker Page</th> | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |                 </tr> | 
					
						
							|  |  |  |             </thead> | 
					
						
							|  |  |  |             <tbody> | 
					
						
							| 
									
										
										
										
											2022-02-23 19:16:45 +01:00
										 |  |  |             {% for patch in room.seed.slots|list|sort(attribute="player_id") %} | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |                 <tr> | 
					
						
							|  |  |  |                     <td>{{ patch.player_id }}</td> | 
					
						
							| 
									
										
										
										
											2024-09-07 17:03:04 -05:00
										 |  |  |                     <td data-tooltip="Connect via Game Client"><a href="archipelago://{{ patch.player_name | e}}:None@{{ config['HOST_ADDRESS'] }}:{{ room.last_port }}?game={{ patch.game }}&room={{ room.id | suuid }}">{{ patch.player_name }}</a></td> | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |                     <td>{{ patch.game }}</td> | 
					
						
							|  |  |  |                     <td> | 
					
						
							| 
									
										
										
										
											2023-04-06 15:24:03 -07:00
										 |  |  |                         {% if patch.data %} | 
					
						
							|  |  |  |                             {% if patch.game == "Minecraft" %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download APMC File...</a> | 
					
						
							|  |  |  |                             {% elif patch.game == "Factorio" %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download Factorio Mod...</a> | 
					
						
							|  |  |  |                             {% elif patch.game == "Kingdom Hearts 2" %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download Kingdom Hearts 2 Mod...</a> | 
					
						
							|  |  |  |                             {% elif patch.game == "Ocarina of Time" %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download APZ5 File...</a> | 
					
						
							|  |  |  |                             {% elif patch.game == "VVVVVV" and room.seed.slots|length == 1 %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download APV6 File...</a> | 
					
						
							|  |  |  |                             {% elif patch.game == "Super Mario 64" and room.seed.slots|length == 1 %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download APSM64EX File...</a> | 
					
						
							|  |  |  |                             {% elif patch.game | supports_apdeltapatch %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_patch", patch_id=patch.id, room_id=room.id) }}" download> | 
					
						
							|  |  |  |                                 Download Patch File...</a> | 
					
						
							| 
									
										
										
										
											2023-11-26 11:17:59 -05:00
										 |  |  |                             {% elif patch.game == "Final Fantasy Mystic Quest" %} | 
					
						
							|  |  |  |                             <a href="{{ url_for("download_slot_file", room_id=room.id, player_id=patch.player_id) }}" download> | 
					
						
							|  |  |  |                                 Download APMQ File...</a> | 
					
						
							| 
									
										
										
										
											2023-04-06 15:24:03 -07:00
										 |  |  |                             {% else %} | 
					
						
							|  |  |  |                                 No file to download for this game. | 
					
						
							|  |  |  |                             {% endif %} | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |                         {% else %} | 
					
						
							|  |  |  |                             No file to download for this game. | 
					
						
							|  |  |  |                         {% endif %} | 
					
						
							|  |  |  |                     </td> | 
					
						
							| 
									
										
										
										
											2022-12-12 00:30:43 +01:00
										 |  |  |                     <td><a href="{{ url_for("get_player_tracker", tracker=room.tracker, tracked_team=0, tracked_player=patch.player_id) }}">Tracker</a></td> | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |                 </tr> | 
					
						
							| 
									
										
										
										
											2020-08-02 22:11:52 +02:00
										 |  |  |             {% endfor %} | 
					
						
							| 
									
										
										
										
											2021-12-22 20:15:56 -05:00
										 |  |  |             </tbody> | 
					
						
							|  |  |  |         </table> | 
					
						
							| 
									
										
										
										
											2020-08-02 22:11:52 +02:00
										 |  |  |     {% endif %} | 
					
						
							| 
									
										
										
										
											2020-11-30 21:15:47 -05:00
										 |  |  | {%- endmacro -%} |