mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-28 16:29:54 +02:00
fixed some merge issues
This commit is contained in:
parent
15689e53cc
commit
08e95ec8b2
1 changed files with 3 additions and 1 deletions
|
@ -673,6 +673,8 @@ class DomainInformationInline(admin.StackedInline):
|
|||
class DomainAdmin(ListHeaderAdmin):
|
||||
"""Custom domain admin class to add extra buttons."""
|
||||
|
||||
inlines = [DomainInformationInline]
|
||||
|
||||
# Columns
|
||||
list_display = [
|
||||
"name",
|
||||
|
@ -688,7 +690,7 @@ class DomainAdmin(ListHeaderAdmin):
|
|||
)
|
||||
|
||||
# Filters
|
||||
list_filter = ["domain_info__organization_type"]
|
||||
list_filter = ["domain_info__organization_type", "state"]
|
||||
|
||||
search_fields = ["name"]
|
||||
search_help_text = "Search by domain name."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue