dwm-app/templates/breeding.html

39 lines
1.1 KiB
HTML
Raw Normal View History

2024-01-31 01:17:15 +00:00
<!-- breeding.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Breeding Combinations</title>
<link rel="stylesheet" href="../static/style/output.css" />
</head>
2024-01-31 02:27:02 +00:00
<body class="bg-slate-700 font-mono text-white">
2024-01-31 01:17:15 +00:00
<div id="breedingCombinations">
{% if selected_monster %}
2024-01-31 02:27:02 +00:00
<h2 class="font-bold text-xl mt-4">
Possible Breeding Pairs for {{ selected_monster.name }}
2024-01-31 01:17:15 +00:00
</h2>
<div class="grid grid-cols-2 gap-1">
<div class="col-span-1">
2024-01-31 02:27:02 +00:00
<h3 class="font-bold text-lg">Base</h3>
2024-01-31 01:17:15 +00:00
<ul>
{% for combination in selected_monster.base_combinations %}
<li>{{ combination }}</li>
2024-01-31 01:17:15 +00:00
{% endfor %}
</ul>
</div>
<div class="col-span-1">
2024-01-31 02:27:02 +00:00
<h3 class="font-bold text-lg">Mates</h3>
2024-01-31 01:17:15 +00:00
<ul>
{% for combination in selected_monster.mate_combinations %}
<li>{{ combination }}</li>
2024-01-31 01:17:15 +00:00
{% endfor %}
</ul>
</div>
</div>
{% endif %}
</div>
</body>
</html>