modified: templates/redeem_giveaway.html

modified:   templates/user_server_data.html
This commit is contained in:
SimolZimol
2025-08-19 11:37:39 +02:00
parent bb8721ebf0
commit e93a91a2de
2 changed files with 14 additions and 6 deletions

View File

@@ -284,7 +284,13 @@
{% endif %}
<div class="text-center mt-4">
<a href="{{ url_for('user_giveaways') }}" class="back-button">
{% if giveaway.guild_id %}
<a href="{{ url_for('user_giveaways', guild_id=giveaway.guild_id) }}" class="back-button">
{% elif guild_id %}
<a href="{{ url_for('user_giveaways', guild_id=guild_id) }}" class="back-button">
{% else %}
<a href="{{ url_for('user_dashboard') }}" class="back-button">
{% endif %}
<i class="fas fa-arrow-left"></i>
Back to Giveaways
</a>