{% extends 'components/shell.html' %} {% from 'components/cards/dm.html' import dm_card %} {% from 'components/headers.html' import user_header %} {% from 'components/card_list.html' import card_list %} {% set paysite = g.paysites[props.service] %} {% set page_title = 'DMs of ' ~ props.artist.name ~ ' from ' ~ paysite.title ~ ' | ' ~ g.site_name %} {% block title %} {{ page_title }} {% endblock title %} {% block meta %} {% endblock meta %} {% block opengraph %} {% endblock opengraph %} {% block content %}
{{ user_header(request, props) }}
{% include "components/tabs.html" %}
{% call card_list("phone") %} {% for dm in props.dms %} {{ dm_card(dm, artist=dm|attr("artist") or {}) }} {% else %}

Nobody here but us chickens!

There are no DMs for your query.

{% endfor %} {% endcall %}
{% endblock content %} {% block components %} {{ loading_icon() }} {% endblock components %}