django_net_ninja/touragency/agency/templates/tours/index.html

17 lines
399 B
HTML
Raw Normal View History

2026-03-14 16:54:39 -06:00
<!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</h1>
<ul>
{% for tour in tours %}
<li>{{tour}}</li>
{% endfor %}
</ul>
</body>
</html>