summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/import_delete.html
blob: f6698d97de3b2cae1a789b1b9b47070dd89dd917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% load i18n inline_formset verbose_names %}
{% block content %}
<h2>{{page_name}}</h2>
    <form action="." method="post">{% csrf_token %}
        <div class="form container">
        {% block "warning_message" %}
            <div class="alert alert-danger">
                <div><i class="fa fa-exclamation-triangle" aria-hidden="true"></i>&nbsp;
                    {% trans "Are you sure to want to delete this item?" %}
                    <p>{% trans "No rollback is possible. Be careful to scroll to the end of page to check every piece of information." %}</p>
                </div>
            </div>
        {% endblock %}

        <h3>{{object}}</h3>
            {% for accessor, imported in object.get_all_imported %}
            {% include "ishtar/import_associated_item.html" %}
            {% endfor %}
            {% comment %}<div><div>{% endcomment %}
              </div>
            </div>
        </div>
        </div>
        {% block "footer" %}
            <div id="footer">
                <p class="confirm-message">{% trans "Are you sure to want to delete this import?" %}</p>
                {% include 'ishtar/wizard/validation_bar.html' %}
                {% include 'ishtar/blocks/footer.html' %}
            </div>
        {% endblock %}
        </div>
    </form>
{% endblock %}