1
0
Fork 0
forked from waifu/kemoverse
kemoverse/web/templates/user.html
2025-06-07 17:26:51 -03:00

23 lines
No EOL
704 B
HTML

{% extends "_base.html" %}
{% block content %}
<div class="profile">
<h1>{{ user['username'] }}'s Gacha Rolls</h1>
<p>User ID: {{ user['id'] }}</p>
<p>Total Rolls: {{ pulls | length }}</p>
</div>
<div class="pulls">
<h2>Pull History</h2>
<ul>
{% for pull in pulls %}
<li>
<span class="timestamp">{{ pull['timestamp'] }}</span><br>
{{ pull['character_name'] }}
<span class="rarity">{{ '★' * pull['rarity'] }}</span>
</li>
{% endfor %}
</ul>
</div>
<a href="{{ url_for('index') }}">← Back to Users</a>
{% endblock %}