2025-02-08 13:35:55 +02:00
|
|
|
{% extends "layouts/base.html" %}
|
|
|
|
{% import "macros/kh2/macros.html" as macros %}
|
|
|
|
|
|
|
|
{% block title %}KH2 - Drops{% endblock %}
|
|
|
|
|
|
|
|
{% block head %}
|
2025-02-09 23:51:54 +02:00
|
|
|
<style>{% include "components/kh2/style.css" %}</style>
|
|
|
|
<script>{% include "components/kh2/script.js" %}</script>
|
2025-02-08 13:35:55 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2025-02-09 13:51:00 +02:00
|
|
|
{% include "components/kh2/only-tracked-filter.html" %}
|
|
|
|
<br />
|
|
|
|
{% include "components/kh2/kind-filters.html" %}
|
|
|
|
<br />
|
2025-02-08 13:35:55 +02:00
|
|
|
|
|
|
|
{% for category in drops %}
|
|
|
|
{% call macros::drop("shard") %}
|
|
|
|
{% call macros::drop("stone") %}
|
|
|
|
{% call macros::drop("gem") %}
|
|
|
|
{% call macros::drop("crystal") %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|