Skip to content

Commit

Permalink
#334 Create admin delete mixin templates
Browse files Browse the repository at this point in the history
  • Loading branch information
viliambalaz committed Apr 20, 2022
1 parent b702ec7 commit 189f09d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{% extends "admin/delete_confirmation.html" %}
{% load amend prepend before after from poleno.amend %}

{% block content %}
{% amend %}
{{ block.super }}
{% after path="./ul[last()]" %}
{% include "admin/inforequests/mixins/delete_nested_inforequest_email_mixin.html" %}
{% endafter %}
{% prepend path=".//form" %}
{% include "admin/inforequests/mixins/snoozed_actions_mixin.html" %}
{% endprepend %}
{% before path=".//form//input[@type='submit']" %}
{% include "utils/admin/bulk_delete_mixin.html" %}
{% endbefore %}
{% endamend %}
{% endblock %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{% extends "admin/delete_selected_confirmation.html" %}
{% load amend prepend before after from poleno.amend %}

{% block content %}
{% amend %}
{{ block.super }}
{% after path="./ul[last()]" %}
{% include "admin/inforequests/mixins/delete_nested_inforequest_email_mixin.html" %}
{% endafter %}
{% prepend path=".//form" %}
{% include "admin/inforequests/mixins/snoozed_actions_mixin.html" %}
{% endprepend %}
{% before path=".//form//input[@type='submit']" %}
{% include "utils/admin/bulk_delete_mixin.html" %}
{% endbefore %}
{% endamend %}
{% endblock %}

0 comments on commit 189f09d

Please sign in to comment.