modified: app.py

modified:   templates/user_dashboard.html
This commit is contained in:
SimolZimol
2024-10-25 16:04:33 +02:00
parent b7a7ef4e92
commit 3c78913f56
2 changed files with 13 additions and 16 deletions

View File

@@ -12,13 +12,9 @@
{% include 'navigation.html' %}
<div class="container mt-5">
<h1>Welcome, {{ g.user_info['username'] }}!</h1>
{% if g.user_data %}
<p>Your Points: {{ g.user_data['points'] }}</p>
<p>Level: {{ g.user_data['level'] }}</p>
<p>Server ID: {{ g.guild_id }}</p>
{% else %}
<p class="text-danger">No data available for this server.</p>
{% endif %}
<p>Your Points: {{ g.user_data['points'] }}</p>
<p>Level: {{ g.user_data['level'] }}</p>
<p>Server ID: {{ g.guild_id }}</p>
</div>
</body>