blob: d45747e4efe3662c7524c0ec9de773f29c7f8f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "ishtar/wizard/delete_wizard.html" %}
{% load i18n %}
{% block "detailed_extra_info" %}
{% if current_object.operations.count %}
<h3>{% trans "Associated operations" %}</h3>
<ul class='list'>
{% for item in current_object.operations.all %}
<li>{{person}} <a class='display_details_inline' href="#"
onclick='load_window("{% url "show-operation" item.pk "" %}")'><i class="fa fa-info-circle" aria-hidden="true"></i></a></li>{% endfor %}
</ul>
{% endif %}
{% endblock %}
|