forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 09:35:29 -06:00
parent 930ee0bb56
commit 2b06a0b68b
1 changed files with 8 additions and 4 deletions

View File

@ -78,19 +78,23 @@
<tr>
<th scope="col">Icon</th>
<th scope="col">Title</th>
<th scope="col"></th>
<th scope="col"></th>
<th scope="col">Amount</th>
</tr>
</thead>
<tbody>
{% for a in awards %}
<tr class="odd:bg-gray-300 dark:odd:bg-white/[.05] hover:bg-gray-400 dark:hover:bg-white/10 hover:cursor-pointer">
<td>
<i class="{{a['icon']}} {{a['color']}}" text-lg></i>
<td class="px-2.5">
<div class="w-16 h-16 p-2 flex items-center justify-center">
<i class="{{a['icon']}} {{a['color']}}"></i>
</div>
</td>
<td class="font-bold">
<td class="px-2.5 font-bold">
{{a['title']}}
</td>
<td>
<td class="px-2.5">
<input type="number" class="form-input" name="{{a['kind']}}" value="0" min="0" max="10" placeholder="Enter amount..." >
</td>
</tr>