Skip to content
Snippets Groups Projects
Commit c92b0386 authored by Jeyan Kanagaratnam's avatar Jeyan Kanagaratnam
Browse files

Upload New File

parent 4d74d910
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Return Dashboard</title>
<!-- css style sheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="page section">
<h1>Returns List</h1>
<p>Here are the latest returns:</p>
<ul>
{% for return in returns %}
<p><strong>ID:</strong> {{ return.id }}</p>
<p><strong>Customer ID:</strong> {{ return.customer_id }}</p>
<p><strong>Product ID:</strong> {{ return.product_id }}</p>
<p><strong>Reward Value:</strong> {{ return.reward_value }}</p>
<p><strong>Return Date:</strong> {{ return.return_date }}</p>
<!-- hr splits -->
<hr>
{% endfor %}
</ul>
</div>
<div class="footer">
<!-- needs to be edited to be dynamic -->
This page will reset in x seconds
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment