Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% load buttons %}
{% load custom_links %}
{% load helpers %}
{% load filters %}
{% load netbox_lifecycle_filters %}
{% load perms %}
{% load plugins %}
{% load tabs %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load i18n %}
{% load filters %}
{% load netbox_lifecycle_filters %}

<table class="table table-sm table-hover mb-0 mt-1">
<thead class="table-light">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load i18n %}
{% load filters %}
{% load netbox_lifecycle_filters %}

<div class="card">
<h5 class="card-header">{% trans "Support Contracts" %}</h5>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load i18n %}
{% load filters %}
{% load netbox_lifecycle_filters %}

<div class="card">
<h5 class="card-header">{% trans "Support Contracts" %}</h5>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

{% load filters %}
{% load netbox_lifecycle_filters %}
{% load helpers %}
{# renders panel on object with lifecycle info assigned to it #}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

{% load filters %}
{% load netbox_lifecycle_filters %}
{% load helpers %}
{# renders panel on object (device) with support contract info assigned to it #}

Expand Down
2 changes: 1 addition & 1 deletion netbox_lifecycle/tests/test_templatetags.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CONTRACT_STATUS_FUTURE,
CONTRACT_STATUS_UNSPECIFIED,
)
from netbox_lifecycle.templatetags.filters import contract_status_badge
from netbox_lifecycle.templatetags.netbox_lifecycle_filters import contract_status_badge


class ContractStatusBadgeFilterTest(TestCase):
Expand Down
Loading