| | <!DOCTYPE html>
|
| | <html lang="en">
|
| | <head>
|
| | <meta charset="UTF-8">
|
| | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| | <title>Matchmaking</title>
|
| | </head>
|
| | <body>
|
| | <h1>Matchmaking Results</h1>
|
| | <a href="{{ url_for('chat') }}">Back to Chat</a>
|
| | <div id="matches">
|
| | {% if matches %}
|
| | {% for match in matches %}
|
| | <p>
|
| | <strong>{{ match.buyer }}</strong> wants to buy <strong>{{ match.product }}</strong>.
|
| | <strong>{{ match.seller }}</strong> wants to sell <strong>{{ match.product }}</strong>.
|
| | Contact them for matchmaking!
|
| | </p>
|
| | {% endfor %}
|
| | {% else %}
|
| | <p>No matches found.</p>
|
| | {% endif %}
|
| | </div>
|
| | </body>
|
| | </html> |