{% extends "dashboard/base.html" %} {% block dashboard %}
Manage the current Mapping
{% include "mapping/mapping_list/mapping_selector.html" %}
{% include "mapping/mapping_list/list_selector.html" %}
{% include "mapping/mapping_list/invite_others.html" %}

{% if mapping.leader == user %}
{% include "mapping/mapping_list/dangerous.html" %}
{% endif %}

Mapping of '{{ mapping.name }}'

{{ mapping.description }} the reviewers of this mapping: {% for reviewer in mapping.reviewers.all %} {% if reviewer == mapping.leader %} {{ reviewer }} {% else %} bures@d3s.mff.cuni.cz {% endif %} {% if not forloop.last %} , {% endif %} {% endfor %}
Add publications to list: '{{ publication_list.name }}' by
{% if publication_list.user %} This list is created by {{ publication_list.user }} {% endif %}
{% include "publication/modals/doi.html" %} {% include "publication/modals/bib_text.html" %} Searching the Web
{% csrf_token %}
Import from Publication Lists
{% include "mapping/forms/select.html" %}

{% if publication_list.publications.all %}
Found {{original_size}} Publications in {{ publication_list.name }} {% if filtered_size %} , Filtered: {{ filtered_size }} {% endif %}
{% if filter_errors %}

{{ filter_errors }}

{% endif %} {% include "mapping/forms/filter.html" %} {% include "mapping/manage.html" %}

{% csrf_token %} {% include "publication/select.html" %}

{% include "publication/publications.html" %}
{% else %}
The '{{ publication_list.name }}' list is empty.
{% endif %}
{% endblock %}