{% if issue.add_action.exists %}Присвоение грантов {% with issue.add_action.select_related as grants %}{% include 'mail/grant_changes.html' %}{% endwith %} {% endif %}{% if issue.del_action.exists %} Отчуждение грантов {% with issue.del_action.select_related as grants %}{% include 'mail/grant_changes.html' %}{% endwith %} {% endif %}{% if issue.add_macros.exists %} Присвоение групп грантов {% for macros in issue.add_macros.all %} {{ macros }}{% endfor %} {% endif %}{% if issue.del_macros.exists %} Отчуждение групп грантов {% for macros in issue.del_macros.all %} {{ macros }}{% endfor %} {% endif %}{% if issue.add_network.exists %} Присвоение сетей {% with issue.addnetworks_set.select_related as networks %}{% include 'mail/network_changes.html' %}{% endwith %} {% endif %}{% if issue.del_network.exists %} Отчуждение сетей {% with issue.delnetworks_set.select_related as networks %}{% include 'mail/network_changes.html' %}{% endwith %} {% endif %}