Skip to content

Commit

Permalink
fix for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
hwalker928 committed Dec 12, 2024
1 parent 742fc88 commit 1af462d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ <h3><b>Reroll</b></h3>
<div id="finalMessage" class="fade-in hidden">
<h3 style="margin-top: 40px">Rules:</h3>
<ol class="list-group list-group-flush text-left">
{ % for rule in config["rules"] %}
{% for rule in config["rules"] %}
<li class="list-group-item">{{rule}}</li>
{ % endfor %}
{% endfor %}
</ol>
<p style="margin-top: 30px">
You may now close this page! It is recommended to screenshot this
Expand Down

0 comments on commit 1af462d

Please sign in to comment.