47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
<!-- 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">
|
|
<script src="{{ url_for('static', filename='js/breeding.js') }}"></script>
|
|
</head>
|
|
<body class="font-mono text-white bg-slate-700">
|
|
<div id="breedingCombinations">
|
|
{% if selected_monster %}
|
|
<h2 class="text-xl font-bold text-center">
|
|
Breeding Pairs
|
|
</h2>
|
|
<div class="grid grid-cols-2 gap-1">
|
|
<div class="col-span-1">
|
|
<h3 class="text-lg font-bold">Base</h3>
|
|
<ul>
|
|
{% for combination in selected_monster.base_combinations %}
|
|
<li class="text-center cursor-pointer hover:text-red-700 w-fit">
|
|
<!-- Add a class to make the monster name clickable -->
|
|
<span class="monster-name" data-name="{{ combination }}">{{ combination }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="col-span-1">
|
|
<h3 class="text-lg font-bold">Mates</h3>
|
|
<ul>
|
|
{% for combination in selected_monster.mate_combinations %}
|
|
<li class="cursor-pointer hover:text-red-700 w-fit">
|
|
<!-- Add a class to make the monster name clickable -->
|
|
<span class="monster-name" data-name="{{ combination }}">{{ combination }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<script src="{{ url_for('static', filename='js/breeding.js') }}"></script>
|
|
</body>
|
|
</html>
|