From 7c47b0f00c31093fa879c5b992a02500fbe34340 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 18 Jun 2018 12:21:00 -0400 Subject: [PATCH] Added delta column in crawl logs --- templates/crawl_logs.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/crawl_logs.html b/templates/crawl_logs.html index 55c7743..60fb839 100644 --- a/templates/crawl_logs.html +++ b/templates/crawl_logs.html @@ -13,6 +13,7 @@ File count Start End + Delta Index @@ -27,6 +28,7 @@ {{ task_result.file_count }} {{ task_result.start_time | datetime_format }} {{ task_result.end_time | datetime_format }} + {{ ((task_result.end_time - task_result.start_time)) | int }} sec {{ task_result.indexed_time | datetime_format }} {% endfor %}