forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-30 15:38:21 +02:00
parent 667e2ffdef
commit c387102bdf
1 changed files with 3 additions and 3 deletions

View File

@ -101,7 +101,7 @@
</div> </div>
{% if render_replies %} {% if render_replies %}
{% if level<10 %} {% if level<9 %}
<div id="replies-of-{{c.id}}" class=""> <div id="replies-of-{{c.id}}" class="">
{% set standalone=False %} {% set standalone=False %}
{% for reply in replies %} {% for reply in replies %}
@ -267,7 +267,7 @@
{% set wager = wager|int*2 %} {% set wager = wager|int*2 %}
<strong>Won {{wager}} Coins.</strong> <strong>Won {{wager}} Coins.</strong>
{% elif blackjack_status == 'blackjack' %} {% elif blackjack_status == 'blackjack' %}
{% set wager = wager|int*5/2 %} {% set wager = wager %}
<strong>Blackjack! Won <span id="blackjack-result-{{c.id}}">{{wager}}</span> Coins.</strong> <strong>Blackjack! Won <span id="blackjack-result-{{c.id}}">{{wager}}</span> Coins.</strong>
<script> <script>
var blackjackResult = document.getElementById('blackjack-result-{{c.id}}'); var blackjackResult = document.getElementById('blackjack-result-{{c.id}}');
@ -593,7 +593,7 @@
<div id="message-reply-{{c.id}}" class="preview mt-2"></div> <div id="message-reply-{{c.id}}" class="preview mt-2"></div>
</div> </div>
</div> </div>
{% elif level<10 or request.path == '/notifications' %} {% elif level<9 or request.path == '/notifications' %}
<div id="replies-of-{{c.id}}"> <div id="replies-of-{{c.id}}">
{% for reply in replies %} {% for reply in replies %}
{{single_comment(reply, level=level+1)}} {{single_comment(reply, level=level+1)}}