master
kek7198 2021-11-25 15:40:21 -06:00
parent 6cf1501058
commit 375f62b138
1 changed files with 7 additions and 5 deletions

View File

@ -55,7 +55,7 @@
</div> </div>
{% endif %} {% endif %}
<img src="/assets/images/shop.webp" width="50%"/> <!-- <img src="/assets/images/shop.webp" width="50%"/> -->
<!-- This example requires Tailwind CSS v2.0+ --> <!-- This example requires Tailwind CSS v2.0+ -->
<div class="flex flex-col"> <div class="flex flex-col">
@ -66,23 +66,24 @@
<thead class="bg-gray-50"> <thead class="bg-gray-50">
<tr> <tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Name Icon
</th> </th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Title Title
</th> </th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Status Price
</th> </th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Role Owned
</th> </th>
<th scope="col" class="relative px-6 py-3"> <th scope="col" class="relative px-6 py-3">
<span class="sr-only">Edit</span> <span class="sr-only">Buy</span>
</th> </th>
</tr> </tr>
</thead> </thead>
<tbody class="bg-white divide-y divide-gray-200"> <tbody class="bg-white divide-y divide-gray-200">
{% for a in awards %}
<tr> <tr>
<td class="px-6 py-4 whitespace-nowrap"> <td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center"> <div class="flex items-center">
@ -115,6 +116,7 @@
<a href="#" class="text-indigo-600 hover:text-indigo-900">Edit</a> <a href="#" class="text-indigo-600 hover:text-indigo-900">Edit</a>
</td> </td>
</tr> </tr>
{% endfor %}
<!-- More people... --> <!-- More people... -->
</tbody> </tbody>