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,17 +11,18 @@
<body>
{% include 'navigation.html' %}
<div class="container mt-5">
<h1 class="text-center">Welcome, {{ g.user_info['username'] }}</h1>
<p class="text-center">Select a server to view your server-specific data.</p>
<h1>Welcome, {{ g.user_info.username }}</h1>
<p>Select a server to view your server-specific data.</p>
<div class="row mt-4">
<div class="row">
{% for guild in guilds %}
<div class="col-md-4 mt-3">
<div class="card">
<img src="https://cdn.discordapp.com/icons/{{ guild['id'] }}/{{ guild['icon'] }}.png" class="card-img-top" alt="Server Icon">
<div class="card-body">
<h5 class="card-title">{{ guild['name'] }}</h5>
<a href="{{ url_for('user_server_data', guild_id=guild['id']) }}" class="btn btn-primary btn-block">View Server</a>
<p class="card-text">Select this server to view your data for {{ guild['name'] }}.</p>
<a href="{{ url_for('user_server_data', guild_id=guild['id']) }}" class="btn btn-primary">View Server</a>
</div>
</div>
</div>