removed templating testing

This commit is contained in:
Chris kerr 2024-02-05 08:16:44 -05:00
parent 9549b03d0e
commit a9b9693795
3 changed files with 1 additions and 39 deletions

View File

@ -8,8 +8,6 @@
{% block head %}{% endblock %} {% block head %}{% endblock %}
</head> </head>
<body class="content-center p-2 m-2 font-mono text-white bg-slate-800"> <body class="content-center p-2 m-2 font-mono text-white bg-slate-800">
{% block body %}{% endblock %} {% block body %} {% endblock %}
</body> </body>
</div>
</html> </html>

View File

@ -16,7 +16,6 @@
> >
<option value="">All Monsters</option> <option value="">All Monsters</option>
</select> </select>
<aside>{% block stats %}{% endblock %}</aside>
<div id="modules" class="flex mt-4"> <div id="modules" class="flex mt-4">
<iframe <iframe

View File

@ -1,35 +0,0 @@
{% extends 'app.html' %} {% block head %}{% endblock %} {% block stats %}
<h2>{{ monster.name }}</h2>
<p><strong>Family:</strong> {{ monster.family }}</p>
<div class="Stats">
<p><strong>Stats:</strong></p>
<ul>
<div class="grid grid-cols-2 gap-1">
<li><label class="font-bold">Max Level:</label> {{ monster.maxlvl }}</li>
<li><label class="font-bold">EXP:</label> {{ monster.exp }}</li>
<li><label class="font-bold">HP:</label> {{ monster.hp }}</li>
<li><label class="font-bold">ATK:</label> {{ monster.atk }}</li>
<li><label class="font-bold">MP:</label> {{ monster.mp }}</li>
<li><label class="font-bold">DEF:</label> {{ monster.def }}</li>
<li><label class="font-bold">AGL:</label> {{ monster.agl }}</li>
<li><label class="font-bold">INT:</label> {{ monster.int }}</li>
</div>
</ul>
</div>
<p><strong>Skills:</strong></p>
<ul>
{% for skill in monster.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
<div class="grid grid-cols-1 gap-1 mt-2">
<p><strong>In Story:</strong> {{ monster.in_story }}</p>
<p><strong>Spawn Locations:</strong></p>
</div>
<ul>
{% for location in monster.spawn_locations %}
<li>{{ location.map }} - {{ location.description }}</li>
{% endfor %}
</ul>
{% endblock %}