fix
This commit is contained in:
parent
a3b71cd963
commit
9367195e82
3 changed files with 42 additions and 4 deletions
|
@ -219,6 +219,24 @@ def shop(v):
|
||||||
"owned": 0,
|
"owned": 0,
|
||||||
"price": 300
|
"price": 300
|
||||||
},
|
},
|
||||||
|
"fireplace": {
|
||||||
|
"kind": "fireplace",
|
||||||
|
"title": "Fire Place",
|
||||||
|
"description": "???",
|
||||||
|
"icon": "fas fa-fireplace",
|
||||||
|
"color": "text-yellow-600",
|
||||||
|
"owned": 0,
|
||||||
|
"price": 300
|
||||||
|
},
|
||||||
|
"candycane": {
|
||||||
|
"kind": "candycane",
|
||||||
|
"title": "Candy Cane",
|
||||||
|
"description": "???",
|
||||||
|
"icon": "fas fa-candy-cane",
|
||||||
|
"color": "text-red-600",
|
||||||
|
"owned": 0,
|
||||||
|
"price": 500
|
||||||
|
},
|
||||||
"mistletoe": {
|
"mistletoe": {
|
||||||
"kind": "mistletoe",
|
"kind": "mistletoe",
|
||||||
"title": "Mistletoe",
|
"title": "Mistletoe",
|
||||||
|
@ -415,6 +433,24 @@ def buy(v, award):
|
||||||
"color": "text-gray",
|
"color": "text-gray",
|
||||||
"price": 300
|
"price": 300
|
||||||
},
|
},
|
||||||
|
"fireplace": {
|
||||||
|
"kind": "fireplace",
|
||||||
|
"title": "Fire Place",
|
||||||
|
"description": "???",
|
||||||
|
"icon": "fas fa-fireplace",
|
||||||
|
"color": "text-yellow-600",
|
||||||
|
"owned": 0,
|
||||||
|
"price": 300
|
||||||
|
},
|
||||||
|
"candycane": {
|
||||||
|
"kind": "candycane",
|
||||||
|
"title": "Candy Cane",
|
||||||
|
"description": "???",
|
||||||
|
"icon": "fas fa-candy-cane",
|
||||||
|
"color": "text-red-600",
|
||||||
|
"owned": 0,
|
||||||
|
"price": 500
|
||||||
|
},
|
||||||
"mistletoe": {
|
"mistletoe": {
|
||||||
"kind": "mistletoe",
|
"kind": "mistletoe",
|
||||||
"title": "Mistletoe",
|
"title": "Mistletoe",
|
||||||
|
|
|
@ -115,5 +115,7 @@
|
||||||
.badge-yellow {
|
.badge-yellow {
|
||||||
@apply from-yellow-600 to-yellow-500 text-yellow-900;
|
@apply from-yellow-600 to-yellow-500 text-yellow-900;
|
||||||
}
|
}
|
||||||
|
.badge-blue {
|
||||||
|
@apply from-blue-600 to-blue-500 text-white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,16 +3,16 @@
|
||||||
<div class="flex flex-col space-y-4 mb-3">
|
<div class="flex flex-col space-y-4 mb-3">
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
<input type="checkbox" id="nsfwCheck" name="over_18">
|
<input type="checkbox" id="nsfwCheck" name="over_18">
|
||||||
<label class="leading-4 inline-block pl-2 text-red-600 select-none" for="nsfwCheck">+18</label>
|
<label class="leading-4 inline-block bagde badge-red select-none" for="nsfwCheck">18+</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
<input type="checkbox" id="privateCheck" name="private">
|
<input type="checkbox" id="privateCheck" name="private">
|
||||||
<label class="leading-4 inline-block pl-2 text-yellow-600 select-none" for="privateCheck">Draft</label>
|
<label class="leading-4 inline-blue bagde badge-yellow select-nonee" for="privateCheck">Draft</label>
|
||||||
</div>
|
</div>
|
||||||
{% if v.paid_dues %}
|
{% if v.paid_dues %}
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
<input type="checkbox" id="clubCheck" name="club">
|
<input type="checkbox" id="clubCheck" name="club">
|
||||||
<label class="leading-4 inline-block pl-2 text-gray-500 select-none" for="clubCheck">Country Club Thread</label>
|
<label class="leading-4 inline-block bagde badge-yellow select-none" for="clubCheck">Country Club Thread</label>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue