tournament page reskinned

This commit is contained in:
Software Shinobi
2026-02-19 00:40:17 -05:00
parent 3e65788ffd
commit 7e93b14012

View File

@@ -1,177 +1,112 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manage Rental Bikes | Robert's Bike Rentals</title>
<title>
Manage Tournaments / Card Players Unite Admin
</title>
<!-- head / css / begin -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.2/dist/lux/bootstrap.min.css">
<link rel="stylesheet" href="{% static 'styling/custom.css' %}">
<link rel="stylesheet" href="{% static 'styling/sketchy.css' %}">
<!-- head / css / end -->
</head>
<body>
<div>
<a href="/home">
<button type="button" class="btn btn-primary">
Home
</button>
</a>
<a href="/about-roberts-rentals">
<button type="button" class="btn btn-primary">
About
</button>
</a>
<a href="/bike-accessories">
<button type="button" class="btn btn-primary">
Bike Accessories
</button>
</a>
<a href="/bike/">
<button type="button" class="btn btn-primary">
Reserve Bike
</button>
</a>
<a href="/accounts/login/">
<button type="button" class="btn btn-secondary">
Log In
</button>
</a>
</div>
<h1>
Robert's Bike Rentals > Manage Rental Bikes <i>[admin]</i>
</h1>
<div>
<img src="{% static 'img/close-up-bicycle-gears.jpg' %}" height=480 width=640>
</div>
<p>
Use this page to view our fleet of rental bikes. You can use this page to return bikes that have been rented by customers.
</p>
<div>
<table class="center">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Rental Price</th>
<th>Rental User ID</th>
<th>Actions</th>
</tr>
</thead>
<tbody >
{% if status_message %}
<h4>
{{ status_message }}
</h4>
{% endif %}
{% if latest_question_list %}
{% for question in latest_question_list %}
<tr>
<td class=""> {{ question.name }} </td>
<td class=""> {{ question.description }} </td>
<td class=""> &euro; {{ question.rental_price }} </td>
<td class=""> {{ question.rented_user_id }} </td>
{% if question.rented_user_id != 0 %}
<td class="">
<a href="/bike/return/{{question.id}}/{{user.pk}}">
<button type="button" class="btn btn-primary">
Return bike: {{ question.name }}
</button>
</a>
</td>
{% else %}
<td class="">
<button type="button" class="btn btn-dark">
Not currently rented by a customer.
</button>
</td>
{% endif %}
</tr>
{% endfor %}
</ul>
{% else %}
<h2>No bikes are available.</h2>
{% endif %}
</tbody>
</table>
</div>
<div class="footer">
Robert's Bike Rental created by <a href="https://github.com/gomsur">Robert</a>. <a href="https://www.freepik.com/free-photo/cyclist-sunny-day-bike-adventure-travel-photo_3972810.htm#query=bike&position=0&from_view=search&track=sph">Image by jcomp</a> on Freepik.
</div>
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary mb-4">
<div class="container">
<a class="navbar-brand" href="/home">Robert's Rentals</a>
<div class="d-flex border-start ps-3">
<a href="/home" class="btn btn-outline-light btn-sm me-2">Home</a>
<a href="/about-roberts-rentals" class="btn btn-outline-light btn-sm me-2">About</a>
<a href="/bike-accessories" class="btn btn-outline-light btn-sm me-2">Accessories</a>
<a href="/bike/" class="btn btn-outline-light btn-sm me-2">Reserve</a>
<a href="/accounts/login/" class="btn btn-secondary btn-sm">Log In</a>
</div>
</div>
</nav>
<div class="container">
<header class="pb-3 mb-4 border-bottom">
<h1 class="display-5 fw-bold text-dark">Manage Rental Bikes <small class="text-muted fs-6">[admin]</small></h1>
</header>
<div class="row align-items-md-stretch">
<div class="col-md-5">
<div class="card border-0 shadow-sm mb-4">
<img src="{% static 'img/close-up-bicycle-gears.jpg' %}" class="card-img-top img-fluid rounded" alt="Bicycle Gears">
</div>
</div>
<div class="col-md-7">
<div class="h-100 p-5 bg-white border rounded-3 shadow-sm">
<h2>Fleet Overview</h2>
<p>Use this administrative dashboard to monitor the status of our rental fleet. You can process returns for bikes currently checked out by customers.</p>
{% if status_message %}
<div class="alert alert-info">{{ status_message }}</div>
{% endif %}
</div>
</div>
</div>
<div class="card shadow-sm mt-4">
<div class="card-body p-0">
<div class="table-responsive">
<table class="table table-hover mb-0">
<thead class="table-dark">
<tr>
<th class="ps-4">Name</th>
<th>Description</th>
<th>Rental Price</th>
<th>Renter ID</th>
<th class="text-center">Actions</th>
</tr>
</thead>
<tbody>
{% if latest_question_list %}
{% for question in latest_question_list %}
<tr class="align-middle">
<td class="fw-bold ps-4">{{ question.name }}</td>
<td>{{ question.description }}</td>
<td><span class="badge bg-success">&euro; {{ question.rental_price }}</span></td>
<td>
{% if question.rented_user_id != 0 %}
<span class="text-primary fw-bold">{{ question.rented_user_id }}</span>
{% else %}
<span class="text-muted small">Available</span>
{% endif %}
</td>
<td class="text-center">
{% if question.rented_user_id != 0 %}
<a href="/bike/return/{{question.id}}/{{user.pk}}" class="btn btn-primary btn-sm px-3">
Return Bike
</a>
{% else %}
<button type="button" class="btn btn-outline-secondary btn-sm disabled" disabled>
In Stock
</button>
{% endif %}
</td>
</tr>
{% endfor %}
{% else %}
<tr>
<td colspan="5" class="text-center py-5 text-muted">
<h3>No bikes are available.</h3>
</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
</div>
</div>
<footer class="pt-5 my-5 text-muted border-top text-center">
Robert's Bike Rental created by <a href="https://github.com/gomsur" class="text-decoration-none">Robert</a>.
<br>
<small>Image by <a href="https://www.freepik.com" class="text-decoration-none">jcomp</a> on Freepik.</small>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>