summaryrefslogtreecommitdiff
path: root/commcrawler/admin.py
diff options
context:
space:
mode:
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'})