rDrama/files/templates/badges.html

30 lines
631 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h1>User Badges</h1>
<div>This page describes the requirements for obtaining all profile badges.</div>
2021-11-21 17:40:47 +00:00
<pre>
2021-10-15 14:08:27 +00:00
2021-11-21 17:40:47 +00:00
</pre>
2021-10-15 14:08:27 +00:00
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>Name</th>
<th>Image</th>
<th>Description</th>
</tr>
</thead>
2021-11-21 17:40:47 +00:00
{% for k,v in badges.items() %}
2021-10-15 14:08:27 +00:00
<tr>
2021-11-21 17:40:47 +00:00
<td>{{v['name']}}</td>
2021-12-27 05:07:19 +00:00
<td><img alt="{{v['name']}}" loading="lazy" src="/static/assets/images/badges/{{v['name']}}.webp?a=3" width=50 height=50>
2021-11-21 17:40:47 +00:00
<td>{{v['description']}}</td>
2021-10-15 14:08:27 +00:00
</tr>
{% endfor %}
</table>
2021-07-21 01:12:26 +00:00
{% endblock %}