diff --git a/ietf/doc/views_doc.py b/ietf/doc/views_doc.py index 591a72d907..62d083753f 100644 --- a/ietf/doc/views_doc.py +++ b/ietf/doc/views_doc.py @@ -1122,6 +1122,7 @@ def get_diff_revisions(request, name, doc): "draft", "charter", "conflict-review", + "statement", "status-change", ] ] @@ -1129,7 +1130,7 @@ def get_diff_revisions(request, name, doc): if not diffable: return [] - + # pick up revisions from events diff_revisions = [] @@ -1175,7 +1176,7 @@ def get_diff_revisions(request, name, doc): url = find_history_active_at(e.doc, e.time).get_href() elif name.startswith("status-change"): url = find_history_active_at(e.doc, e.time).get_href() - elif name.startswith("draft") or name.startswith("rfc"): + elif name.startswith("draft") or name.startswith("rfc") or name.startswith("statement"): # rfcdiff tool has special support for IDs url = e.doc.name + "-" + e.rev