Skip to content

Commit

Permalink
Show visits_since_last_analyzed in AnalyzedUrlAdmin
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Feb 9, 2024
1 parent 6f77b2c commit 129a624
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion adserver/analyzer/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ class AnalyzedUrlAdmin(SimpleHistoryAdmin):

"""Django admin configuration for analyzed URLs."""

list_display = ("url", "publisher", "keywords", "last_analyzed_date")
list_display = (
"url",
"publisher",
"keywords",
"last_analyzed_date",
"visits_since_last_analyzed",
)
list_per_page = 500
list_filter = ("last_analyzed_date", "last_ad_served_date", "publisher")
list_select_related = ("publisher",)
Expand Down

0 comments on commit 129a624

Please sign in to comment.