Skip to content

Commit ba9d896

Browse files
committed
fix(templates): Remove redundant table captions
Eliminates unnecessary captions from tables in ACL-related templates. These captions were duplicate content and provided no additional value to the user interface.
1 parent f5d6c5f commit ba9d896

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

netbox_acls/templates/netbox_acls/accesslist.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<div class="card">
2020
<h2 class="card-header">Access List</h2>
2121
<table class="table table-hover attr-table">
22-
<caption>Access List</caption>
2322
<tr>
2423
<th scope="row">Type</th>
2524
<td>{% badge object.get_type_display bg_color=object.get_type_color %}</td>

netbox_acls/templates/netbox_acls/aclextendedrule.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<div class="card">
77
<h2 class="card-header">ACL Extended Rule</h2>
88
<table class="table table-hover attr-table">
9-
<caption>ACL Extended Rule</caption>
109
<tr>
1110
<th scope="row">Access List</th>
1211
<td>
@@ -30,7 +29,6 @@ <h2 class="card-header">ACL Extended Rule</h2>
3029
<div class="card">
3130
<h2 class="card-header">Details</h2>
3231
<table class="table table-hover attr-table">
33-
<caption>Details</caption>
3432
<tr>
3533
<th scope="row">Remark</th>
3634
<td>{{ object.get_remark_display|placeholder }}</td>

netbox_acls/templates/netbox_acls/aclinterfaceassignment.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<div class="card">
88
<h2 class="card-header">ACL Interface Assignment</h2>
99
<table class="table table-hover attr-table">
10-
<caption>Host</caption>
1110
<tr>
1211
<th scope="row">Host</th>
1312
<td>

netbox_acls/templates/netbox_acls/aclstandardrule.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<div class="card">
77
<h2 class="card-header">ACL Standard Rule</h2>
88
<table class="table table-hover attr-table">
9-
<caption>ACL Standard Rule</caption>
109
<tr>
1110
<th scope="row">Access List</th>
1211
<td>
@@ -30,7 +29,6 @@ <h2 class="card-header">ACL Standard Rule</h2>
3029
<div class="card">
3130
<h2 class="card-header">Details</h2>
3231
<table class="table table-hover attr-table">
33-
<caption>Details</caption>
3432
<tr>
3533
<th scope="row">Remark</th>
3634
<td>{{ object.get_remark_display|placeholder }}</td>

0 commit comments

Comments
 (0)