{% extends 'core/base/base.html' %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% block content %}
Projects {% if project.label %}{{ project.label }}{% else %}New Project{% endif %} Import Things

Import things from "{% if from.label %}{{ from.label }}{% else %}New Project{% endif %}" into "{% if project.label %}{{ project.label }}{% elif from.label %}New Project{% else %}Newer Project{% endif %}"

total of {{ objects_to_import_len }} objects
{% csrf_token %} {% for obj in objects_to_import %} {% endfor %}
LabelTypes
{{ obj.label }} {% for t in obj.types %} {{ t.as_string }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endblock %} {% block script %} {% endblock %}