forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-04 13:47:23 -06:00
parent d622a3e2cd
commit c78e2b17ec
3 changed files with 42 additions and 4 deletions

View File

@ -219,6 +219,24 @@ def shop(v):
"owned": 0,
"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": {
"kind": "mistletoe",
"title": "Mistletoe",
@ -415,6 +433,24 @@ def buy(v, award):
"color": "text-gray",
"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": {
"kind": "mistletoe",
"title": "Mistletoe",

View File

@ -115,5 +115,7 @@
.badge-yellow {
@apply from-yellow-600 to-yellow-500 text-yellow-900;
}
.badge-blue {
@apply from-blue-600 to-blue-500 text-white;
}

View File

@ -3,16 +3,16 @@
<div class="flex flex-col space-y-4 mb-3">
<div class="flex items-center">
<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 class="flex items-center">
<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>
{% if v.paid_dues %}
<div class="flex items-center">
<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>
{% endif %}
</div>