mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 12:06:53 -06:00
fix double line breaks
This commit is contained in:
parent
bda4f314a4
commit
59cd5bc653
@ -6,7 +6,7 @@ from django.urls import reverse
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from netbox.models import ChangeLoggedModel, OrganizationalModel, PrimaryModel
|
||||
from netbox.models.features import CustomFieldsMixin, CustomLinksMixin, TagsMixin, ContactsMixin
|
||||
from netbox.models.features import ContactsMixin, CustomFieldsMixin, CustomLinksMixin, TagsMixin
|
||||
from vpn.choices import *
|
||||
|
||||
__all__ = (
|
||||
|
@ -72,11 +72,11 @@ class TunnelGroupBulkDeleteView(generic.BulkDeleteView):
|
||||
class TunnelGroupContactsView(ObjectContactsView):
|
||||
queryset = TunnelGroup.objects.all()
|
||||
|
||||
|
||||
#
|
||||
# Tunnels
|
||||
#
|
||||
|
||||
|
||||
@register_model_view(Tunnel, 'list', path='', detail=False)
|
||||
class TunnelListView(generic.ObjectListView):
|
||||
queryset = Tunnel.objects.annotate(
|
||||
@ -141,11 +141,11 @@ class TunnelBulkDeleteView(generic.BulkDeleteView):
|
||||
class TunnelContactsView(ObjectContactsView):
|
||||
queryset = Tunnel.objects.all()
|
||||
|
||||
|
||||
#
|
||||
# Tunnel terminations
|
||||
#
|
||||
|
||||
|
||||
@register_model_view(TunnelTermination, 'list', path='', detail=False)
|
||||
class TunnelTerminationListView(generic.ObjectListView):
|
||||
queryset = TunnelTermination.objects.all()
|
||||
|
Loading…
Reference in New Issue
Block a user