ipfabric_netbox 4.3.1b2__py3-none-any.whl → 4.3.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ipfabric_netbox might be problematic. Click here for more details.

Files changed (31) hide show
  1. ipfabric_netbox/__init__.py +1 -1
  2. ipfabric_netbox/choices.py +20 -20
  3. ipfabric_netbox/forms.py +17 -15
  4. ipfabric_netbox/models.py +19 -19
  5. ipfabric_netbox/navigation.py +10 -9
  6. ipfabric_netbox/tables.py +12 -10
  7. ipfabric_netbox/templates/ipfabric_netbox/inc/clone_form.html +7 -4
  8. ipfabric_netbox/templates/ipfabric_netbox/inc/diff.html +10 -8
  9. ipfabric_netbox/templates/ipfabric_netbox/inc/json.html +4 -2
  10. ipfabric_netbox/templates/ipfabric_netbox/inc/logs_pending.html +4 -3
  11. ipfabric_netbox/templates/ipfabric_netbox/inc/merge_form.html +7 -5
  12. ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_button.html +8 -6
  13. ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_modal.html +8 -4
  14. ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_field_map.html +2 -1
  15. ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_relationship_map.html +2 -1
  16. ipfabric_netbox/templates/ipfabric_netbox/ipfabric_table.html +4 -4
  17. ipfabric_netbox/templates/ipfabric_netbox/ipfabricingestion.html +12 -11
  18. ipfabric_netbox/templates/ipfabric_netbox/ipfabricsnapshot.html +15 -14
  19. ipfabric_netbox/templates/ipfabric_netbox/ipfabricsource.html +13 -12
  20. ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html +16 -15
  21. ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html +7 -6
  22. ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_list.html +2 -1
  23. ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_restore.html +1 -1
  24. ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmapgroup.html +4 -3
  25. ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_progress.html +5 -4
  26. ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_statistics.html +5 -4
  27. ipfabric_netbox/templates/ipfabric_netbox/partials/job_logs.html +10 -9
  28. ipfabric_netbox/views.py +8 -7
  29. {ipfabric_netbox-4.3.1b2.dist-info → ipfabric_netbox-4.3.2.dist-info}/METADATA +1 -1
  30. {ipfabric_netbox-4.3.1b2.dist-info → ipfabric_netbox-4.3.2.dist-info}/RECORD +31 -31
  31. {ipfabric_netbox-4.3.1b2.dist-info → ipfabric_netbox-4.3.2.dist-info}/WHEEL +0 -0
@@ -1,16 +1,17 @@
1
1
  {% load humanize %}
2
2
  {% load helpers %}
3
+ {% load i18n %}
3
4
 
4
5
  <p>
5
6
  {% if job.started %}
6
- Started: <strong>{{ job.started|isodatetime }}</strong>
7
+ {% trans "Started:" %} <strong>{{ job.started|isodatetime }}</strong>
7
8
  {% elif job.scheduled %}
8
- Scheduled for: <strong>{{ job.scheduled|isodatetime }}</strong> ({{ job.scheduled|naturaltime }})
9
+ {% trans "Scheduled for:" %} <strong>{{ job.scheduled|isodatetime }}</strong> ({{ job.scheduled|naturaltime }})
9
10
  {% elif job %}
10
- Created: <strong>{{ job.created|isodatetime }}</strong>
11
+ {% trans "Created:" %} <strong>{{ job.created|isodatetime }}</strong>
11
12
  {% endif %}
12
13
  {% if job.completed %}
13
- Duration: <strong>{{ job.duration }}</strong>
14
+ {% trans "Duration:" %} <strong>{{ job.duration }}</strong>
14
15
  {% endif %}
15
16
  <span id="pending-result-label">{% badge job.get_status_display job.get_status_color %}</span>
16
17
  </p>
@@ -18,15 +19,15 @@
18
19
  {% include 'ipfabric_netbox/inc/logs_pending.html' %}
19
20
  {% endif %}
20
21
  <div class="card">
21
- <h5 class="card-header">Sync Results</h5>
22
+ <h5 class="card-header">{% trans "Sync Results" %}</h5>
22
23
  <div class="card-body">
23
24
  <table class="table table-hover report">
24
25
  <thead>
25
26
  <tr class="table-headings">
26
- <th>Time</th>
27
- <th>Level</th>
28
- <th>Object</th>
29
- <th>Message</th>
27
+ <th>{% trans "Time" %}</th>
28
+ <th>{% trans "Level" %}</th>
29
+ <th>{% trans "Object" %}</th>
30
+ <th>{% trans "Message" %}</th>
30
31
  </tr>
31
32
  </thead>
32
33
  <tbody>
ipfabric_netbox/views.py CHANGED
@@ -13,6 +13,7 @@ from django.shortcuts import redirect
13
13
  from django.shortcuts import render
14
14
  from django.urls import reverse
15
15
  from django.utils import timezone
16
+ from django.utils.translation import gettext as _
16
17
  from django.views.generic import View
17
18
  from django_tables2 import RequestConfig
18
19
  from ipfabric.diagrams import Network
@@ -411,7 +412,7 @@ class IPFabricTransformFieldView(generic.ObjectChildrenView):
411
412
  template_name = "ipfabric_netbox/inc/transform_map_field_map.html"
412
413
  actions = (AddObject, BulkDelete)
413
414
  tab = ViewTab(
414
- label="Field Maps",
415
+ label=_("Field Maps"),
415
416
  badge=lambda obj: IPFabricTransformField.objects.filter(
416
417
  transform_map=obj
417
418
  ).count(),
@@ -430,7 +431,7 @@ class IPFabricTransformRelationshipView(generic.ObjectChildrenView):
430
431
  template_name = "ipfabric_netbox/inc/transform_map_relationship_map.html"
431
432
  actions = (AddObject, BulkDelete)
432
433
  tab = ViewTab(
433
- label="Relationship Maps",
434
+ label=_("Relationship Maps"),
434
435
  badge=lambda obj: IPFabricRelationshipField.objects.filter(
435
436
  transform_map=obj
436
437
  ).count(),
@@ -508,7 +509,7 @@ class IPFabricSnapshotRawView(generic.ObjectChildrenView):
508
509
  table = IPFabricDataTable
509
510
  template_name = "ipfabric_netbox/inc/snapshotdata.html"
510
511
  tab = ViewTab(
511
- label="Raw Data",
512
+ label=_("Raw Data"),
512
513
  badge=lambda obj: IPFabricData.objects.filter(snapshot_data=obj).count(),
513
514
  permission="ipfabric_netbox.view_ipfabricsnapshot",
514
515
  hide_if_empty=True,
@@ -845,7 +846,7 @@ class IPFabricTransformMapTabView(generic.ObjectChildrenView):
845
846
  template_name = "generic/object_children.html"
846
847
  actions = (AddObject, BulkDelete)
847
848
  tab = ViewTab(
848
- label="Transform Maps",
849
+ label=_("Transform Maps"),
849
850
  badge=lambda obj: obj.get_transform_maps(
850
851
  obj.parameters.get("groups", []) if obj.parameters else []
851
852
  ).count(),
@@ -866,7 +867,7 @@ class IPFabricIngestionTabView(generic.ObjectChildrenView):
866
867
  filterset = IPFabricIngestionFilterSet
867
868
  actions = (AddObject, BulkDelete)
868
869
  tab = ViewTab(
869
- label="Ingestions",
870
+ label=_("Ingestions"),
870
871
  badge=lambda obj: IPFabricIngestion.objects.filter(sync=obj).count(),
871
872
  permission="ipfabric_netbox.view_ipfabricingestion",
872
873
  )
@@ -1082,7 +1083,7 @@ class IPFabricIngestionChangesView(generic.ObjectChildrenView):
1082
1083
  filterset = IPFabricIngestionChangeFilterSet
1083
1084
  template_name = "generic/object_children.html"
1084
1085
  tab = ViewTab(
1085
- label="Changes",
1086
+ label=_("Changes"),
1086
1087
  badge=lambda obj: ChangeDiff.objects.filter(branch=obj.branch).count(),
1087
1088
  permission="ipfabric_netbox.view_ipfabricingestion",
1088
1089
  )
@@ -1100,7 +1101,7 @@ class IPFabricIngestionIssuesView(generic.ObjectChildrenView):
1100
1101
  filterset = IPFabricIngestionIssueFilterSet
1101
1102
  actions = (AddObject, BulkDelete)
1102
1103
  tab = ViewTab(
1103
- label="Ingestion Issues",
1104
+ label=_("Ingestion Issues"),
1104
1105
  badge=lambda obj: IPFabricIngestionIssue.objects.filter(ingestion=obj).count(),
1105
1106
  permission="ipfabric_netbox.view_ipfabricingestionissue",
1106
1107
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ipfabric_netbox
3
- Version: 4.3.1b2
3
+ Version: 4.3.2
4
4
  Summary: NetBox plugin to sync IP Fabric data into NetBox
5
5
  License: MIT
6
6
  Keywords: netbox,ipfabric,plugin,sync
@@ -1,13 +1,13 @@
1
- ipfabric_netbox/__init__.py,sha256=HcmpvN2Z1p1Rm0fFyHjsl-TotcxDAFjLhiSa6E-GcOs,674
1
+ ipfabric_netbox/__init__.py,sha256=-WcCwls7dVwHp7FX8M2ffSgbQEDjqE4snzKJkB8Uz7Y,672
2
2
  ipfabric_netbox/api/__init__.py,sha256=XRclTGWVR0ZhAAwgYul5Wm_loug5_hUjEumbLQEwKYM,47
3
3
  ipfabric_netbox/api/serializers.py,sha256=92Cwhnqsm1l1oZfdHH5aJI1VFX0eO5JS4BsdXE6Ur18,6738
4
4
  ipfabric_netbox/api/urls.py,sha256=1fXXVTxNY5E64Nfz6b7zXD9bZI3FcefuxAWKMe0w_QU,1240
5
5
  ipfabric_netbox/api/views.py,sha256=qOBTIzPtOBY75tTjirsTBbiRXrQQid478Tp15-WKbmQ,6859
6
- ipfabric_netbox/choices.py,sha256=Cky13o9awZBAc5L7ufaGIX5tXu54IUu-9kCx001Ysag,5957
6
+ ipfabric_netbox/choices.py,sha256=r1A7zasYw92fdB6MxnvcLkzz4mA61_wSUmbfuDbmg0M,6017
7
7
  ipfabric_netbox/data/transform_map.json,sha256=4PsucgMHcLW3SPoKEptQCd0gA5tCF4hjrR4bGQFCWy8,21744
8
8
  ipfabric_netbox/exceptions.py,sha256=DT4dpbakvqoROtBR_F0LzvQCMNWpGhufFcUbZTx0OLY,2655
9
9
  ipfabric_netbox/filtersets.py,sha256=4I_ogO0Wqexf4e4gy_CirdGmA6vSCybyCadFcjI2LM8,8011
10
- ipfabric_netbox/forms.py,sha256=dNqV1p8biMYrUiBnt1jpoSqci_suicEyY_o0gm4L0YY,50003
10
+ ipfabric_netbox/forms.py,sha256=s9jYgK75CJzCrhnEeB3WxxZ9bF2YfNDA4N-sO9xTqgc,50068
11
11
  ipfabric_netbox/graphql/__init__.py,sha256=-a5w_VY7pc-RVt8MvThkTzeAqCC3xCan4Ue6iMefmjI,754
12
12
  ipfabric_netbox/graphql/enums.py,sha256=sZ2neNkM4HUA4ODvio9aFcI8tIJoc2xKuy9_c5b40Q8,1565
13
13
  ipfabric_netbox/graphql/filters.py,sha256=QYYE_5wE57cpRzhXJzU8IEpDDnPb97NUd9Zbf0OZfNA,13066
@@ -36,35 +36,35 @@ ipfabric_netbox/migrations/0018_remove_type_field.py,sha256=ffxW6IS3BLCbvM5M9DbD
36
36
  ipfabric_netbox/migrations/0019_alter_ipfabrictransformmap_options_and_more.py,sha256=ieDVedt9KpJBicAiC3kdZXzHeos12N0L9EdRXKmIVgY,501
37
37
  ipfabric_netbox/migrations/0020_clean_scheduled_jobs.py,sha256=zjCVKnCWTKYYkpVRwHjqRIRR2j6ALSKXYMfraRjNu7Y,2652
38
38
  ipfabric_netbox/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- ipfabric_netbox/models.py,sha256=mN0J1WfbY4zZvn3iaUj_mZppLfgaJErLZRjNGmxuyvE,38345
40
- ipfabric_netbox/navigation.py,sha256=2dEJ_wKHb52Tl0FOV1TH3JbxRe8YZ56ewrTsBFGKpCg,2210
39
+ ipfabric_netbox/models.py,sha256=3etGCInD1FH1uyOlNh-Lx8iCd1SqdqoN583XK6yhBsw,38402
40
+ ipfabric_netbox/navigation.py,sha256=g2PyyaMqjgYwO3VIKza8vMS-dhbkvxscsHwVfWBj_dk,2287
41
41
  ipfabric_netbox/signals.py,sha256=cGa5PVD2i24pGXiVNfbu6ruIDqPVdwKQHTSWe9Ura84,1838
42
- ipfabric_netbox/tables.py,sha256=BpPmL6-KClX16Ol_PIADyOx9NtDR9oauXH5iO4GeSoI,9008
42
+ ipfabric_netbox/tables.py,sha256=jXiHcRrR4XwkvyUnnU92JW290nZg-85IdpKjsQOsFcc,9052
43
43
  ipfabric_netbox/template_content.py,sha256=lxZ02BFVihbSgjXCETGsWmhdElQUUO3uUGd0WfhlRmw,1120
44
- ipfabric_netbox/templates/ipfabric_netbox/inc/clone_form.html,sha256=K-2TTDaS1F4wUIR8FFFPqex4KJbySXtHiz5V-OEwelY,967
45
- ipfabric_netbox/templates/ipfabric_netbox/inc/diff.html,sha256=xOiIrvRIBtqDD65u6xcLo2xdwDKNpAylDmzznaJRGCw,3281
46
- ipfabric_netbox/templates/ipfabric_netbox/inc/json.html,sha256=qPHUdaHyKM9Y7FqBEnYwcNoyp5GMFaexJFXMRf4AqZQ,569
47
- ipfabric_netbox/templates/ipfabric_netbox/inc/logs_pending.html,sha256=JbS6wIE_zb0iBKo78W9Al8caXZY7HnsjEFDhY0hirw0,295
48
- ipfabric_netbox/templates/ipfabric_netbox/inc/merge_form.html,sha256=HxGRk7oTptDWtoMklJ5TolbljZrvAzhZa_Hbjs75P8w,720
49
- ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_button.html,sha256=iLd0W3rxAAVrgsYBIyro_88x5a2QFZZMc56EOAfOZsg,2744
50
- ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_modal.html,sha256=zjG5qjth277dnVkzyg8qxs72wtKZ8yypXRTXqral4Wk,2124
44
+ ipfabric_netbox/templates/ipfabric_netbox/inc/clone_form.html,sha256=f6O5ugjQg7u37QWxUpKvE38jNslwb3rCMghlAUqjWBk,1127
45
+ ipfabric_netbox/templates/ipfabric_netbox/inc/diff.html,sha256=npdsr8vWOfpUafto1gj3CwR34dGV5BkoygnY9U8bSNs,3439
46
+ ipfabric_netbox/templates/ipfabric_netbox/inc/json.html,sha256=Z1zxFjy4PaAin3g_1EXy1KSlJyqSxWCD096wbRulQaE,635
47
+ ipfabric_netbox/templates/ipfabric_netbox/inc/logs_pending.html,sha256=lZXUFWQCQtu6RMe_OQQmjLMjJEnZ71EHPrhvSTE_-R4,353
48
+ ipfabric_netbox/templates/ipfabric_netbox/inc/merge_form.html,sha256=hey2JVm3IDZUqdpujzPUJYB7xZ4nxQ0pxl5wwRQIxOY,836
49
+ ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_button.html,sha256=hPo7bREzg_JAPjSoLyj4vYx07Gzcg5nvjDosiCp6Sa0,2845
50
+ ipfabric_netbox/templates/ipfabric_netbox/inc/site_topology_modal.html,sha256=uABhE6ChpZgusMlJPQueMsv4MLqaFFoSRP7o3sRhh84,2320
51
51
  ipfabric_netbox/templates/ipfabric_netbox/inc/snapshotdata.html,sha256=1ItOCPjjp9iH7MLNLIz6x-2NnSa0Wx4bXUYVk-Jn4Y0,2885
52
- ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_field_map.html,sha256=mRU-rBweVFvaPFHbVYPw7vcYyXiVaXCOkeHm7xWdKPA,500
53
- ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_relationship_map.html,sha256=qyuG_EXZMGUscA3sv_6WGSrf_bR7JTRlKyMYf6EYyo4,504
54
- ipfabric_netbox/templates/ipfabric_netbox/ipfabric_table.html,sha256=TsF34lK2CyDsMxlFTk--2lF_0AxYM614eKmkgYAbJ-k,1629
55
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricingestion.html,sha256=ymqTB9JEk0AFncK5kz8yStHWCD_IMNKlbgyqu_qon7g,4585
56
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricsnapshot.html,sha256=hj8ORs_4mM_xTjmw3McHN-da5seC8nbbkzobn0f1TSc,3482
57
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricsource.html,sha256=DQOA2TA7f1nI5YpxXthS1VzjIU1kMZus37l6bYSCauE,3869
58
- ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=dt8HYuHCzIN4otLS9QK3e1aES14isFI-1jyp8jrENXU,4616
59
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=qFo_Ku5oksx5co4HVtVq0xAVFI6CLWs-iBrwYzGsEGA,1460
60
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_list.html,sha256=p8zqn0-B6mawSUM3zQrus6dsKUM5SRBTO0X94pLboX8,452
61
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_restore.html,sha256=TV7gAZWtSd-c7mzOen_nv7Z8MZr2Vw8vkHP4zW9au4w,2580
62
- ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmapgroup.html,sha256=H3uvjA4PdJq5uX2kizdHV1pAxwcPpyfc9IbJi1ZK5-k,975
52
+ ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_field_map.html,sha256=MSpU2mQnrGg_jA1-eqQgaSK9DXCeo3w6j33tV_GFNJ4,535
53
+ ipfabric_netbox/templates/ipfabric_netbox/inc/transform_map_relationship_map.html,sha256=tmIV0gDhfVxBse4xDeE5atMi4KEMkvxB_WRx94gu44U,539
54
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabric_table.html,sha256=HsxENF0KaaGT8w0_K6251LVH0W_mg60W8ktApxAG59U,1689
55
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabricingestion.html,sha256=EohTqqCwafb3ZfX0MJko4sdKaKNQmNZ7Cc7f0vTo-K8,4760
56
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabricsnapshot.html,sha256=HWCGi1e0O_jL-5XnIYfCC5EQh5oSw-1-ZUpjH6-cGV0,3690
57
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabricsource.html,sha256=I9K7Eob-jjNAy6lryq2QKpp-5JyR1DEJSPF3D6JKR_w,4063
58
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabricsync.html,sha256=M7tig8Y42ndsipBHKVVfSFb9tSGvm7Cf4fj-B54xizs,4852
59
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap.html,sha256=bAau1cqRMUsOWHIxkMP-6ALf7l-6AZSQfh-iPGUPR6U,1560
60
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_list.html,sha256=kRb6NsLxurojh4Afb_oJbIMlgMprsVuhvRiuk8hB7OM,482
61
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmap_restore.html,sha256=os11SIwApFAiA1j0ObaOqG_KDHuieMiwyv9gPpZ9exI,2594
62
+ ipfabric_netbox/templates/ipfabric_netbox/ipfabrictransformmapgroup.html,sha256=X5jsRsK1WCqYpf-iQuHKChbg_hTTcrMpg48K5BU2S_0,1033
63
63
  ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_all.html,sha256=ZstgG3MJbd8WAOcGUKEpt4CSjIInhF14wgVgqSc1oAs,675
64
- ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_progress.html,sha256=tb9JAc9GjPd05F1RQdRrfrDwSQMWlcbbQOrQCXedQWs,680
65
- ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_statistics.html,sha256=_KtbxZQlIa_141OQSIAvSsMMfZRkNj27kJqrYHuLt7Y,867
64
+ ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_progress.html,sha256=vXRRoKiVioZmq4N30p11nKSxlG0AYYxlMNSNF3qxzj0,752
65
+ ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_statistics.html,sha256=HK--4JK1dBUk2S0n97MLiU7JrqV25hEoXmDvoLKaxPk,939
66
66
  ipfabric_netbox/templates/ipfabric_netbox/partials/ingestion_status.html,sha256=qYXe-V-kQn1INqCHLSSpdrzXJ_IIt84AgCgAGwqpNbs,178
67
- ipfabric_netbox/templates/ipfabric_netbox/partials/job_logs.html,sha256=THiEs8wYMvEn8y0XGhxX7rj3w466CkDhaEzc4CxgGLY,1694
67
+ ipfabric_netbox/templates/ipfabric_netbox/partials/job_logs.html,sha256=xtr_vSdHsR9N7bUqo3MLUO8P5Y_M6-G2B9bmD763KAE,1836
68
68
  ipfabric_netbox/templates/ipfabric_netbox/partials/object_tabs.html,sha256=3xbGy38Y1RH13bVPlcyj5L6J_FM-mOW1y0fx54hj1xE,364
69
69
  ipfabric_netbox/templates/ipfabric_netbox/partials/sync_last_ingestion.html,sha256=3v6tC88xE5cic9l9lQw7Msawoq-AW2oo2odd-osGv50,179
70
70
  ipfabric_netbox/templates/static/ipfabric_netbox/css/rack.css,sha256=z1H-RmmsqF2pGdhn5J64TMFiccy62xZUHHlCRd8fJrQ,118
@@ -82,7 +82,7 @@ ipfabric_netbox/utilities/ipfutils.py,sha256=I5okghNJV8M82eWACz1-px46AChcSWsoOu5
82
82
  ipfabric_netbox/utilities/logging.py,sha256=GYknjocMN6LQ2873_az3y0RKm29TCXaWviUIIneH-x0,3445
83
83
  ipfabric_netbox/utilities/nbutils.py,sha256=kFBEiJOGvr_49hJWCS2duXojx2-A9kVk0Xp_vj0ohfs,2641
84
84
  ipfabric_netbox/utilities/transform_map.py,sha256=GpM_7Mm6FE0qV2qbyj4YfDn0l-JkeeEHQOZkNVSSHk4,2391
85
- ipfabric_netbox/views.py,sha256=JcXvoLo8JQ0PUyvUwi1tZQgrxw9okKBlocsIUKoGAbo,44758
86
- ipfabric_netbox-4.3.1b2.dist-info/METADATA,sha256=6Bqriy8Ls-ErFbDdQMCnUxhZRCjLVN92fneBGhI5b7A,4754
87
- ipfabric_netbox-4.3.1b2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
88
- ipfabric_netbox-4.3.1b2.dist-info/RECORD,,
85
+ ipfabric_netbox/views.py,sha256=CPVtPvHcKCeCAusxjC0WvnOUKn6p5m3lgd57wOp29dI,44829
86
+ ipfabric_netbox-4.3.2.dist-info/METADATA,sha256=0YCejyxTmY3t01oFOFcJ4EpbjI_YQF8Nuf9N_Qt9aKQ,4752
87
+ ipfabric_netbox-4.3.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
88
+ ipfabric_netbox-4.3.2.dist-info/RECORD,,