File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,17 @@ <h5>
110
110
< div class ="panel panel-info endpoints table-responsive ">
111
111
{% colgroup endpoints into 2 cols as grouped_items %}
112
112
< table class ="table-striped table table table-condensed table-hover finding-endpoints ">
113
- {% for row in grouped_items %}
114
- < tr >
115
- {% for item in row %}
116
- < td > {% if item %}< i class ="fa-solid fa-circle "> </ i >
117
- {{ item }}{% endif %}
118
- </ td >
119
- {% endfor %}
120
- </ tr >
121
- {% endfor %}
113
+ {% if grouped_items|length > 0 %}
114
+ {% for row in grouped_items %}
115
+ < tr >
116
+ {% for item in row %}
117
+ < td > {% if item %}< i class ="fa-solid fa-circle "> </ i >
118
+ {{ item }}{% endif %}
119
+ </ td >
120
+ {% endfor %}
121
+ </ tr >
122
+ {% endfor %}
123
+ {% endif %}
122
124
</ table >
123
125
</ div >
124
126
</ div >
You can’t perform that action at this time.
0 commit comments