modified: templates/global_admin_dashboard.html

modified:   templates/server_admin_dashboard.html
	modified:   templates/server_giveaways.html
	modified:   templates/user_dashboard.html
	modified:   templates/user_landing_page.html
This commit is contained in:
SimolZimol
2024-10-25 10:17:06 +02:00
parent 2733d8971a
commit 36ff99eab0
5 changed files with 43 additions and 33 deletions

View File

@@ -11,19 +11,10 @@
<body>
{% include 'navigation.html' %}
<div class="container mt-5">
<h1 class="text-center">{{ g.user_info['username'] }}'s Dashboard for Server {{ guild_id }}</h1>
<p class="text-center">Your server-specific data.</p>
<div class="card mt-4">
<div class="card-body">
<h5 class="card-title">User Data</h5>
<ul class="list-group">
<li class="list-group-item">Points: {{ user_data['points'] }}</li>
<li class="list-group-item">XP: {{ user_data['xp'] }}</li>
<li class="list-group-item">Level: {{ user_data['level'] }}</li>
</ul>
</div>
</div>
<h1>Welcome, {{ g.user_info.username }}!</h1>
<p>Your Points: {{ user_data['points'] }}</p>
<p>Level: {{ user_data['level'] }}</p>
<p>Server ID: {{ guild_id }}</p>
</div>
</body>