69 lines
2.9 KiB
HTML
69 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Your Won Giveaways</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
<div class="container mt-5">
|
|
<div class="text-center mb-4">
|
|
<h1>{{ g.user_info['username'] }}'s Won Giveaways</h1>
|
|
<p class="text-muted">Server: <strong>{{ g.guild_name }}</strong> (ID: {{ g.guild_id }})</p>
|
|
</div>
|
|
|
|
{% if won_giveaways %}
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-bordered mt-4">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Platform</th>
|
|
<th>Status</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for giveaway in won_giveaways %}
|
|
<tr>
|
|
<td>{{ giveaway.name }}</td>
|
|
<td>{{ giveaway.platform }}</td>
|
|
<td>
|
|
{% if giveaway.aktiv %}
|
|
<span class="badge badge-success">Redeemed <i class="fas fa-check-circle"></i></span>
|
|
{% else %}
|
|
<span class="badge badge-warning">Not Redeemed <i class="fas fa-hourglass-half"></i></span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if giveaway.aktiv %}
|
|
<!-- Link to view the redeemed key -->
|
|
<a href="{{ url_for('redeem_giveaway', guild_id=g.guild_id, uuid=giveaway['uuid']) }}" class="btn btn-secondary btn-sm">
|
|
<i class="fas fa-eye"></i> View Key
|
|
</a>
|
|
{% else %}
|
|
<!-- Link to redeem the giveaway -->
|
|
<a href="{{ url_for('redeem_giveaway', guild_id=g.guild_id, uuid=giveaway['uuid']) }}" class="btn btn-primary btn-sm">
|
|
<i class="fas fa-gift"></i> Redeem
|
|
</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<div class="alert alert-info text-center" role="alert">
|
|
You have not won any giveaways on this server yet.
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Optional: Include FontAwesome for icons -->
|
|
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
|
|
</body>
|
|
</html>
|