cvxc
This commit is contained in:
parent
b92d5d92d8
commit
40a08186bd
1 changed files with 3 additions and 3 deletions
|
@ -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)}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue