2022-05-04 23:09:46 +00:00
|
|
|
{% extends "default.html" %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}User Badges{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% block content %}
|
2022-10-29 00:38:39 +00:00
|
|
|
<h1 class="mt-3">User Badges</h1>
|
2022-05-04 23:09:46 +00:00
|
|
|
<div>This page describes the requirements for obtaining all profile badges.</div>
|
2022-10-29 00:38:39 +00:00
|
|
|
<div class="overflow-x-auto mt-3">
|
2022-06-27 02:47:49 +00:00
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
2022-12-18 17:02:40 +00:00
|
|
|
<th>ID</th>
|
2022-06-27 02:47:49 +00:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Image</th>
|
|
|
|
<th>Description</th>
|
2022-12-10 10:40:34 +00:00
|
|
|
<th>#</th>
|
|
|
|
<th>Rarity</th>
|
2022-06-27 02:47:49 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-27 02:47:49 +00:00
|
|
|
{% for badge in badges %}
|
|
|
|
<tr>
|
2022-12-18 17:02:40 +00:00
|
|
|
<td>{{badge.id}}</td>
|
2022-06-27 02:47:49 +00:00
|
|
|
<td>{{badge.name}}</td>
|
2022-08-25 17:50:18 +00:00
|
|
|
<td>
|
2022-12-26 22:10:49 +00:00
|
|
|
<img class="contain" alt="{{badge.name}}" loading="lazy" src="{{badge.path}}?b=6" width=45.83 height=50>
|
2022-08-25 17:50:18 +00:00
|
|
|
</td>
|
2022-06-27 02:47:49 +00:00
|
|
|
<td>{{badge.description}}</td>
|
|
|
|
{%- set ct = counts[badge.id] if badge.id in counts else (0, 0) %}
|
2022-10-10 05:23:02 +00:00
|
|
|
<td class="badges-rarity-qty"><a href="/badge_owners/{{badge.id}}">{{ct[0]}}</a></td>
|
|
|
|
<td class="badges-rarity-ratio">{{"{:0.3f}".format(ct[1])}}%</td>
|
2022-06-27 02:47:49 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-07-09 08:35:47 +00:00
|
|
|
|
2022-12-10 10:40:34 +00:00
|
|
|
|
2022-07-09 08:35:47 +00:00
|
|
|
|
2022-10-10 05:23:02 +00:00
|
|
|
{% endblock %}
|