{% extends "base.html" %} {% block body %}
×
{% if data.player.widgets %}
{% for widget in data.player.widgets %} {% include "Home/Profile/widgets.html" %} {% endfor %} {% for widget in data.player.notes %} {% include "Home/Profile/notes.html" %} {% endfor %} {% for sticker in data.player.widgets %} {% if sticker.type == "s" %} {% include "Home/Profile/stickers.html" %} {% endif %} {% endfor %} {% else %} {% include "Home/Profile/home.html" %} {% endif %}
{% endblock %}