from netbox.plugins import PluginTemplateExtension class PrefixListActions(PluginTemplateExtension): model = "ipam.prefix" def list_buttons(self): return self.render("netbox_better_ips/inc/prefix_list_buttons.html") template_extensions = (PrefixListActions,)