Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby committed Jul 4, 2024
1 parent 4e2a02d commit 0af6ca1
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 98 deletions.
2 changes: 1 addition & 1 deletion admin_scripts/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import requests

from hunt.constants import HINTS_PER_LEVEL
HINTS_PER_LEVEL = 5

SERVER = "http://localhost:8000"
USERNAME = "admin"
Expand Down
2 changes: 1 addition & 1 deletion hunt/templates/level.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h2>Level {{ level_number }}</h2>
<div class="hints">
{% for hint in hints %}<img class="hint" src="{{ hint }}" alt="Hint" />{% endfor %}
</div>
{% if is_last is not True %}
{% if not is_last %}
<a class="gobutton" href="{% url 'map' %}?lvl={{ level_number }}">SEARCH MAP</a>
<a class="gobutton" href="{% url 'search' %}?lvl={{ level_number }}">SEARCH CO-ORDINATES</a>
{% if level_number != team_level %}
Expand Down
Loading

0 comments on commit 0af6ca1

Please sign in to comment.