{# Displays list of wanted items and names of items having links or transclusions referring to the non-existent item. If the wanting item has multiple names, only the first name is displayed. #} {% extends theme("layout.html") %} {% macro item_row(fq_name, who_wants) %} {{ fq_name.fullname }} {% set names = who_wants[fq_name.fullname] %} {% for name in names %} {{ name }}
{% endfor %} {% endmacro %} {% block content %} {% if headline %}

{{ headline }}

{% endif %} {% if fq_names %}

Total: {{ fq_names|count }}

{% for fq_name in fq_names|sort(attribute='fullname') %} {{ item_row(fq_name, who_wants) }} {% endfor %} {% endif %} {% endblock %}