Skip to content

Commit

Permalink
Changed hardcoded timezone to automated time zone for hunt info and i…
Browse files Browse the repository at this point in the history
…ndex
  • Loading branch information
dlareau committed Mar 17, 2020
1 parent bf5e8d0 commit fbb47eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion huntserver/templates/hunt_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<div class="container">
<h1 class="title">{{curr_hunt.hunt_name}}</h1>
<h2 class="title">{{ curr_hunt.display_start_date|date:" m/d/y " }} {{ curr_hunt.display_start_date|time:"h:iA" }} &ndash; {{ curr_hunt.display_end_date|date:" m/d/y "}} {{ curr_hunt.display_end_date|time:"h:iA" }} (Eastern Time)<br>
<h2 class="title">{{ curr_hunt.display_start_date|date:" m/d/y " }} {{ curr_hunt.display_start_date|time:"h:iA" }} &ndash; {{ curr_hunt.display_end_date|date:" m/d/y "}} {{ curr_hunt.display_end_date|time:"h:iA e" }}<br>
Kickoff location is {{ curr_hunt.location }}</h2>
<div id='qa'>
<h2>What are the puzzles like?</h2>
Expand Down
2 changes: 1 addition & 1 deletion huntserver/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</strong></p>
<p align="center"><strong>
{{curr_hunt.hunt_name}}<br>
{{ curr_hunt.display_start_date|date:" m/d/y " }} {{ curr_hunt.display_start_date|time:"h:iA" }} &ndash; {{ curr_hunt.display_end_date|date:" m/d/y "}} {{ curr_hunt.display_end_date|time:"h:iA" }} (Eastern Time)<br>
{{ curr_hunt.display_start_date|date:" m/d/y " }} {{ curr_hunt.display_start_date|time:"h:iA" }} &ndash; {{ curr_hunt.display_end_date|date:" m/d/y "}} {{ curr_hunt.display_end_date|time:"h:iA e" }}<br>
Kickoff location is {{ curr_hunt.location }}
</strong></p>
{% if not curr_hunt.is_public %}
Expand Down

0 comments on commit fbb47eb

Please sign in to comment.