modified: app.py

modified:   templates/global_admin_dashboard.html
	modified:   templates/user_dashboard.html
	modified:   templates/user_landing_page.html
This commit is contained in:
SimolZimol
2024-10-25 13:56:32 +02:00
parent f3a8eebc44
commit c917f30e4f
4 changed files with 190 additions and 68 deletions

View File

@@ -24,7 +24,7 @@
</nav>
<div class="container mt-5">
<h1 class="text-center">Welcome, {{ g.user_info.username }} (Admin)</h1>
<h1 class="text-center">Welcome, {{ g.user_info['username'] }} (Admin)</h1>
<p class="text-center">Manage global bot settings and controls.</p>
<div class="card mt-4">

View File

@@ -11,7 +11,7 @@
<body>
{% include 'navigation.html' %}
<div class="container mt-5">
<h1>Welcome, {{ g.user_info.username }}!</h1>
<h1>Welcome, {{ g.user_info['username'] }}!</h1>
<p>Your Points: {{ g.user_data['points'] }}</p>
<p>Level: {{ g.user_data['level'] }}</p>
<p>Server ID: {{ g.guild_id }}</p>

View File

@@ -11,7 +11,7 @@
<body>
{% include 'navigation.html' %}
<div class="container mt-5">
<h1>Welcome, {{ g.user_info.username }}</h1>
<h1>Welcome, {{ g.user_info['username'] }}</h1>
<p>Select a server to view your server-specific data.</p>
<div class="row">