From: Magnus Hagander Date: Mon, 16 Jun 2025 13:47:45 +0000 (+0200) Subject: Show cauth version field in django overview page X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=84bf556fce721f355cc8037a7d70ae15c242afda;p=pgweb.git Show cauth version field in django overview page --- diff --git a/pgweb/account/admin.py b/pgweb/account/admin.py index 8cea5605..dd89e9a5 100644 --- a/pgweb/account/admin.py +++ b/pgweb/account/admin.py @@ -47,7 +47,7 @@ class CommunityAuthSiteAdminForm(forms.ModelForm): class CommunityAuthSiteAdmin(admin.ModelAdmin): - list_display = ('name', 'cooloff_hours', 'push_changes', 'push_ssh', 'org') + list_display = ('name', 'cooloff_hours', 'push_changes', 'push_ssh', 'version', 'org') form = CommunityAuthSiteAdminForm