diff --git a/templates/global_admin_dashboard.html b/templates/global_admin_dashboard.html index 5e32895..81d0cca 100644 --- a/templates/global_admin_dashboard.html +++ b/templates/global_admin_dashboard.html @@ -9,9 +9,22 @@ - {% include 'navigation.html' %} + +
-

Welcome, {{ g.user_info['username'] }} (Global Admin)

+

Welcome, {{ g.user_info.username }} (Admin)

Manage global bot settings and controls.

@@ -24,13 +37,7 @@

Start Bot Stop Bot -
-
- -
-
-
View Logs
- Logs + View Logs
diff --git a/templates/server_admin_dashboard.html b/templates/server_admin_dashboard.html index b612a1f..d6746a6 100644 --- a/templates/server_admin_dashboard.html +++ b/templates/server_admin_dashboard.html @@ -9,15 +9,28 @@ - {% include 'navigation.html' %} + +

Server Admin Dashboard for {{ guild_name }}

-

Manage server-specific settings and controls for this guild.

+

Manage server-specific settings for this guild.

Giveaway Management
-

Manage active giveaways for this server.

+

Manage and view all active giveaways for this server.

View Giveaways
diff --git a/templates/server_giveaways.html b/templates/server_giveaways.html index b5bcc4e..4868585 100644 --- a/templates/server_giveaways.html +++ b/templates/server_giveaways.html @@ -11,10 +11,8 @@ {% include 'navigation.html' %}
-

Giveaways for Server {{ guild_id }}

- Add Giveaway - - +

Giveaways for Server {{ guild_id }}

+
diff --git a/templates/user_dashboard.html b/templates/user_dashboard.html index d2bbb4c..d8edd48 100644 --- a/templates/user_dashboard.html +++ b/templates/user_dashboard.html @@ -11,19 +11,10 @@ {% include 'navigation.html' %}
-

{{ g.user_info['username'] }}'s Dashboard for Server {{ guild_id }}

-

Your server-specific data.

- -
-
-
User Data
-
    -
  • Points: {{ user_data['points'] }}
  • -
  • XP: {{ user_data['xp'] }}
  • -
  • Level: {{ user_data['level'] }}
  • -
-
-
+

Welcome, {{ g.user_info.username }}!

+

Your Points: {{ user_data['points'] }}

+

Level: {{ user_data['level'] }}

+

Server ID: {{ guild_id }}

diff --git a/templates/user_landing_page.html b/templates/user_landing_page.html index fdd80d9..58e481f 100644 --- a/templates/user_landing_page.html +++ b/templates/user_landing_page.html @@ -11,17 +11,18 @@ {% include 'navigation.html' %}
-

Welcome, {{ g.user_info['username'] }}

-

Select a server to view your server-specific data.

+

Welcome, {{ g.user_info.username }}

+

Select a server to view your server-specific data.

-
+
{% for guild in guilds %}
Server Icon
{{ guild['name'] }}
- View Server +

Select this server to view your data for {{ guild['name'] }}.

+ View Server
Name