Skip to content

Commit

Permalink
cove_rdls/templates/cove_rdls/additional_fields_table.html: Fix modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed (ODSC) committed Sep 6, 2023
1 parent b198e35 commit 5a259f0
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions cove_rdls/templates/cove_rdls/additional_fields_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<tr>
<th class="">{% trans 'Field Name' %}</th>
<th class="">{% trans 'Field Path' %}</th>
<th class="">{% trans 'Usage Count' %}
<th class="">{% trans 'Usage Count' %}</th>
<th class="">{% trans 'First 3 Values' %}</th>
<th class="">{% trans 'Child Fields' %}</th>
</tr>
Expand Down Expand Up @@ -60,20 +60,23 @@ <h4>{% blocktrans %}Child fields of {{parent_full_path}}{% endblocktrans %} </h4
<tr>
<th> {% trans 'Field' %}</th>
<th> {% trans 'Path to Field' %}</th>
<th> {% trans 'Usage Count' %}</th>
<th> {% trans 'Examples (first 3)' %}</th>
<!-- <th> {% trans 'Usage Count' %}</th> -->
<th> {% trans 'Value' %}</th>
</tr>
</thead>
<tbody>
{% for full_path, info in parent_info.additional_field_descendance.items %}
<tr>
<td>{{info.field_name}}</td>
<td>{{info.path}}</td>
<td>{{info.count}}</td>
<td>
<!-- <td>{{info.count}}</td> -->
<!-- <td>
{% for example in info.examples %}
{{example}} <br />
{% endfor %}
</td> -->
<td>
{{ info.examples|first }}
</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 5a259f0

Please sign in to comment.