Skip to content

Commit

Permalink
Fixes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxxer authored Oct 9, 2021
1 parent 5562ea4 commit 08741aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/potato-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h1 id="potato-title">{{ localize "PotatoOrNot.Selection"}}</h1>
<div class='potato-master-container'>
<div class='potato-level-container' level='0' {{#if (eq potato_quality 0)}} active {{/if}} >
<div class="potato-level-row">
<img src='/modules/potato-or-not/styles/img/bad_potato.jpg'>
<img src='modules/potato-or-not/styles/img/bad_potato.jpg'>
</div>
<div class="potato-level-row-text">
<h2>{{ localize "PotatoOrNot.BadTitle" }}</h2>
Expand All @@ -75,7 +75,7 @@ <h2>{{ localize "PotatoOrNot.BadTitle" }}</h2>
</div>
<div class='potato-level-container' level='1' {{#if (eq potato_quality 1)}} active {{/if}} >
<div class="potato-level-row">
<img src='/modules/potato-or-not/styles/img/potato.png'>
<img src='modules/potato-or-not/styles/img/potato.png'>
</div>
<div class="potato-level-row-text">
<h2>{{ localize "PotatoOrNot.MediumTitle" }}</h2>
Expand All @@ -84,7 +84,7 @@ <h2>{{ localize "PotatoOrNot.MediumTitle" }}</h2>
</div>
<div class='potato-level-container' level='2' {{#if (eq potato_quality 2)}} active {{/if}} >
<div class="potato-level-row">
<img src='/modules/potato-or-not/styles/img/good_potato.jpg'>
<img src='modules/potato-or-not/styles/img/good_potato.jpg'>
</div>
<div class="potato-level-row-text">
<h2>{{ localize "PotatoOrNot.GoodTitle" }}</h2>
Expand All @@ -97,9 +97,9 @@ <h2>{{ localize "PotatoOrNot.GoodTitle" }}</h2>

<div class="dialog-buttons">
<button class="dialog-button" data-button="confirm">
<img class="potato_icon" src='/modules/potato-or-not/styles/img/potato_icon.png'></img>
<img class="potato_icon" src='modules/potato-or-not/styles/img/potato_icon.png'></img>
{{ localize "PotatoOrNot.Accept" }}
</button>
</div>

</form>
</form>

0 comments on commit 08741aa

Please sign in to comment.