Files
Django-Inventory-App/worldtour/asiatoursagency/templates/tours/index.html

16 lines
348 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport>" content="width=device-width, initial-scale=1.0">
<title>Asia Tours</title>
</head>
<body>
<h1>Asia Tours Schedule for June 2025</h1>
<ul>
{% for tour in tours %}
<li>{{tour}}</li>
{% endfor %}
</ul>
</body>
</html>