From c7e29b3cb16ecf10e9ef30b49e6627402723c303 Mon Sep 17 00:00:00 2001 From: James Polley Date: Sun, 3 Dec 2017 17:30:43 +1100 Subject: [PATCH] Don't try to initialise dataTable twice Old code was initialising the dataTable twice - once in the parent block and once in the child. This doesn't actually work and just caused errors. Switch to only initializing it once. Unfortunately this creates copy-pasta :( --- .../reviews/result_notification.html | 33 ++++++++++++++++--- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/pinaxcon/templates/symposion/reviews/result_notification.html b/pinaxcon/templates/symposion/reviews/result_notification.html index 4fdfb8e5..12a6cbea 100644 --- a/pinaxcon/templates/symposion/reviews/result_notification.html +++ b/pinaxcon/templates/symposion/reviews/result_notification.html @@ -85,7 +85,10 @@ {% endblock %} {% block extra_script %} -{{ block.super }} + + + + {% endblock %}