forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LttP: free core of checks_in_area (ArchipelagoMW#1798)
- Loading branch information
1 parent
a6ba185
commit ee40312
Showing
9 changed files
with
112 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% for team, hints in hints.items() %} | ||
<div class="table-wrapper"> | ||
<table id="hints-table" class="table non-unique-item-table" data-order='[[5, "asc"], [0, "asc"]]'> | ||
<thead> | ||
<tr> | ||
<th>Finder</th> | ||
<th>Receiver</th> | ||
<th>Item</th> | ||
<th>Location</th> | ||
<th>Entrance</th> | ||
<th>Found</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{%- for hint in hints -%} | ||
<tr> | ||
<td>{{ long_player_names[team, hint.finding_player] }}</td> | ||
<td>{{ long_player_names[team, hint.receiving_player] }}</td> | ||
<td>{{ hint.item|item_name }}</td> | ||
<td>{{ hint.location|location_name }}</td> | ||
<td>{% if hint.entrance %}{{ hint.entrance }}{% else %}Vanilla{% endif %}</td> | ||
<td>{% if hint.found %}✔{% endif %}</td> | ||
</tr> | ||
{%- endfor -%} | ||
</tbody> | ||
</table> | ||
</div> | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.