diff --git a/ietf/static/js/list.js b/ietf/static/js/list.js index 48e9fd486..b047f3e05 100644 --- a/ietf/static/js/list.js +++ b/ietf/static/js/list.js @@ -20,7 +20,7 @@ function replace_with_internal(table, internal_table, i) { .replaceWith(internal_table[i] .children("table") .children("tbody") - .clone()); + .clone(true)); } function field_magic(i, e, fields) { @@ -160,10 +160,10 @@ $(document) // create the internal table and add list.js to them var thead = $(this) .siblings("thead:first") - .clone(); + .clone(true); var tbody = $(this) - .clone(); + .clone(true); var tbody_rows = $(tbody) .find("tr") @@ -178,7 +178,7 @@ $(document) var parent = $(table) .parent() - .clone(); + .clone(true); $(parent) .children("table") @@ -251,6 +251,7 @@ $(document) $.each(list_instance, (i, e) => { e.on("sortComplete", function () { replace_with_internal(table, internal_table, i); + $(table).find("[data-bs-original-title]").tooltip(); if (i == list_instance.length - 1) { $(table) .find("thead:first tr") diff --git a/ietf/templates/community/untrack_document.html b/ietf/templates/community/untrack_document.html index 985dcad89..fe94081a7 100644 --- a/ietf/templates/community/untrack_document.html +++ b/ietf/templates/community/untrack_document.html @@ -1,17 +1,14 @@ {# Copyright The IETF Trust 2015, All Rights Reserved #} +{% extends "base.html" %} {% load origin %} {% origin %} -{% load django_bootstrap5 %} {% block title %}Remove tracking of document {{ name }}{% endblock %} -{% bootstrap_messages %} -
- {% csrf_token %} -

- Remove {{ name }} from the list? -

- -
+{% block content %} +
+ {% csrf_token %} +

+ Remove {{ name }} from the list? +

+ +
+{% endblock %} \ No newline at end of file