{% extends 'components/shell.html' %} {% from 'components/cards/dm.html' import dm_card %} {% block title %} Approve DMs for import to Kemono. {% endblock title %} {% block meta %} {% endblock meta %} {% block content %}
{% include "components/importer_states.html" %}

DM Review for {{ props.import_id }}

{% if props.dms %}
{% for dm in props.dms %}
{{ dm_card(dm, class_name='dms__card', is_private=true) }}
{% endfor %}
{% else %}

There are no DMs waiting for approval.

{% endif %}
{% endblock %}