{% extends 'localcosmos_server/modals/modal_form.html' %} {% load i18n static localcosmos_tags %} {% block action %} {% url 'move_taxonprofiles_navigation_entry' meta_app.id taxon_profiles.id navigation_entry.id %} {% endblock %} {% block title %} {% blocktrans %}Move {{ navigation_entry }} to a different parent{% endblocktrans %} {% endblock %} {% block body %}
{% if success %}
{% if navigation_entry.parent %} {% blocktrans with new_parent=navigation_entry.parent %}{{ navigation_entry }} has been moved to {{ new_parent }}.{% endblocktrans %} {% else %} {% blocktrans %}{{ navigation_entry }} has been moved to top level.{% endblocktrans %} {% endif %}
{% else %}
{% render_bootstrap_form form %}
{% endif %}
{% endblock %} {% block footer %} {% if success %} {% include 'localcosmos_server/modals/footers/close.html' %} {% else %} {% include 'localcosmos_server/modals/footers/save.html' %} {% endif %} {% endblock %} {% block script %} {% if success %} {% endif %} {% endblock %}