2024-09-29 02:15:18 +03:00
|
|
|
{% extends "layouts/base.html" %}
|
|
|
|
|
2025-01-31 15:40:23 +02:00
|
|
|
{% block title %}DDD - Spirit Boards{% endblock %}
|
2024-09-29 02:15:18 +03:00
|
|
|
|
|
|
|
{% block head %}
|
2025-02-09 23:51:54 +02:00
|
|
|
<style>{% include "components/ddd/style.css" %}</style>
|
|
|
|
<script>{% include "components/ddd/script.js" %}</script>
|
2024-09-29 02:15:18 +03:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% for board in boards %}
|
2024-10-06 01:01:04 +03:00
|
|
|
<h1>{{+ board.spirit +}}</h1>
|
|
|
|
{% include "components/ddd/abilities.html" %}
|
|
|
|
{% include "components/ddd/dispositions.html" %}
|
|
|
|
{% include "components/ddd/board.html" %}
|
2024-09-29 02:15:18 +03:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|