{% extends "layouts/base.html" %} {% block title %}BBS - Finishers{% endblock %} {% block head %} {% endblock %} {% block content %}
{% include "components/bbs/char-filters.html" %}
{% for lvl in 1..=6u8 %} {% endfor %} {% for char in Character::values() %} {% for row in 1..=5u8 %} {% for lvl in 1..=6u8 %} {% match get_at(char, *lvl, *row) %} {% when Some with (val) %} {% when None %} {% endmatch %} {% endfor %} {% endfor %} {% endfor %}
LV {{lvl}}
{{ val.name }} {% if val.has_top_path() %}
{% endif %} {% if val.has_mid_path() %}
{% endif %} {% if val.has_bottom_path() %}
{% endif %}
---
{% endblock %}