{% extends "base.html" %} {% load i18n plmapp_tags %} {% block css %} {% endblock %} {% block scripts %} {% endblock %} {% block content %} {% if obj.is_cloneable %}

{% trans "OBJECT CLONING:" %}

{% csrf_token %} {{ creation_form }}
{% if is_linked %}

{% trans "Links" %}

{% if obj.is_part %} {% include 'parts/clone.html' %} {% else %} {% include 'documents/clone.html' %} {% endif %}
{% else %}
{% if obj.is_part %} {% trans "No object ( part and document ) is related to this part." %} {% else %} {% trans "No part is attached to this document." %} {% endif %}
{% endif %}
{% else %}

{% trans "You can not clone this object since you are not a contributor."%}

{% endif %} {% endblock %}