summaryrefslogtreecommitdiff
path: root/commcrawler/admin.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-08-09 13:06:03 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-08-09 13:06:03 +0200
commite7dd52e03d8e770d8fcee1503fa8109dc3778d29 (patch)
treefbd89b70b52caa9cf0db21aa2efc24ed678fc2d3 /commcrawler/admin.py
parent347a0822484ad16b9a29eef1ea30082b4a841ac6 (diff)
downloadComm-on-net-e7dd52e03d8e770d8fcee1503fa8109dc3778d29.tar.bz2
Comm-on-net-e7dd52e03d8e770d8fcee1503fa8109dc3778d29.zip
Manage links betweens targets
Diffstat (limited to 'commcrawler/admin.py')
-rw-r--r--commcrawler/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/commcrawler/admin.py b/commcrawler/admin.py
index fcd1a1b..64714d2 100644
--- a/commcrawler/admin.py
+++ b/commcrawler/admin.py
@@ -18,7 +18,7 @@ class CrawlAdmin(admin.ModelAdmin):
list_display = ("name", "status", "target_nb", "created", "started",
"ended", "progress")
list_filter = ("status",)
- readonly_fields = ("created", "started", "ended")
+ readonly_fields = ("created", "started", "crawl_ended", "ended")
form = make_ajax_form(model, {'targets': 'target'})