From d045429b510cd6b83b3fbceea603ea5b82155ee7 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 15 Aug 2016 17:57:17 -0400 Subject: [PATCH] Fixes #469: Added missing import buttons to list views --- netbox/templates/circuits/circuit_list.html | 4 ++++ netbox/templates/circuits/provider_list.html | 4 ++++ netbox/templates/ipam/aggregate_list.html | 4 ++++ netbox/templates/tenancy/tenant_list.html | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/netbox/templates/circuits/circuit_list.html b/netbox/templates/circuits/circuit_list.html index f30339ec6..db6861b2e 100644 --- a/netbox/templates/circuits/circuit_list.html +++ b/netbox/templates/circuits/circuit_list.html @@ -10,6 +10,10 @@ Add a circuit + + + Import circuits + {% endif %} {% include 'inc/export_button.html' with obj_type='circuits' %} diff --git a/netbox/templates/circuits/provider_list.html b/netbox/templates/circuits/provider_list.html index 54dfdac93..ca3dbfc09 100644 --- a/netbox/templates/circuits/provider_list.html +++ b/netbox/templates/circuits/provider_list.html @@ -9,6 +9,10 @@ Add a provider + + + Import providers + {% endif %} {% include 'inc/export_button.html' with obj_type='providers' %} diff --git a/netbox/templates/ipam/aggregate_list.html b/netbox/templates/ipam/aggregate_list.html index 52bca7219..aef7d84c1 100644 --- a/netbox/templates/ipam/aggregate_list.html +++ b/netbox/templates/ipam/aggregate_list.html @@ -11,6 +11,10 @@ Add an aggregate + + + Import aggregates + {% endif %} {% include 'inc/export_button.html' with obj_type='aggregates' %} diff --git a/netbox/templates/tenancy/tenant_list.html b/netbox/templates/tenancy/tenant_list.html index 24f796da3..529f01c76 100644 --- a/netbox/templates/tenancy/tenant_list.html +++ b/netbox/templates/tenancy/tenant_list.html @@ -10,6 +10,10 @@ Add a tenant + + + Import tenants + {% endif %} {% include 'inc/export_button.html' with obj_type='tenants' %}