Fixed fursuiter propic appearing to non-fursuiters
This commit is contained in:
parent
a4e34c4599
commit
2710010750
|
@ -156,7 +156,7 @@
|
||||||
<section id="badge">
|
<section id="badge">
|
||||||
{# Badge is always shown #}
|
{# Badge is always shown #}
|
||||||
<h2>Badge</h2>
|
<h2>Badge</h2>
|
||||||
{% if not order.ans('propic') %}
|
{% if (not order.ans('propic')) or (order.ans('is_fursuiter') != 'No' and not order.ans('propic_fursuiter')) %}
|
||||||
<p class="notice">⚠️ One or more badge pictures are missing! This will cause you badge to be empty, so make sure to upload something before the deadline!</p>
|
<p class="notice">⚠️ One or more badge pictures are missing! This will cause you badge to be empty, so make sure to upload something before the deadline!</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<form method="POST" enctype="multipart/form-data" action="/manage/propic/upload">
|
<form method="POST" enctype="multipart/form-data" action="/manage/propic/upload">
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>Normal Badge</p>
|
<p>Normal Badge</p>
|
||||||
</div>
|
</div>
|
||||||
{% if order.ans('is_fursuiter') %}
|
{% if order.ans('is_fursuiter') != 'No' %}
|
||||||
<div>
|
<div>
|
||||||
{% if not order.ans('propic_fursuiter') %}
|
{% if not order.ans('propic_fursuiter') %}
|
||||||
<input type="file" value="" accept="image/jpeg,image/png" name="propic_fursuiter" />
|
<input type="file" value="" accept="image/jpeg,image/png" name="propic_fursuiter" />
|
||||||
|
|
Loading…
Reference in New Issue