From d81bbec1632cfbeb47ef4c5bd590be1adde53599 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Thu, 13 Jun 2019 14:22:44 -0700 Subject: [PATCH] Show build length in the admin --- readthedocs/builds/admin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/readthedocs/builds/admin.py b/readthedocs/builds/admin.py index 62d85bb6f3b..84e1e831cef 100644 --- a/readthedocs/builds/admin.py +++ b/readthedocs/builds/admin.py @@ -44,6 +44,7 @@ class BuildAdmin(admin.ModelAdmin): 'type', 'state', 'date', + 'length' ) list_filter = ('type', 'state', 'success') list_select_related = ('project', 'version')