diff --git a/proxmox/admin.py b/proxmox/admin.py index a701f1a..7020309 100644 --- a/proxmox/admin.py +++ b/proxmox/admin.py @@ -76,4 +76,5 @@ class LxcAdmin(admin.ModelAdmin): class LxcTemplateAdmin(admin.ModelAdmin): actions = [sync_all_lxc_templates_from_proxmox] search_fields = ('volid',) - list_display = ('volid', 'human_size', 'content') + list_display = ('volid', 'human_size', 'content', 'is_default_template') + list_filter = ('is_default_template',)