Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load history json template data mapping updated #143

Merged
merged 13 commits into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pebblo/reports/templates/reportTemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<div class="inter flex items-center">
<div class="surface-10 font-14 medium">Load History</div>
<div class="surface-10-opacity ml-2 font-12">
Last {{data.loadHistory|length}} Reports
Last {{data.loadHistory.history|length}} Reports
</div>
</div>
<div class="mt-3 inter">
Expand All @@ -128,7 +128,7 @@
</tr>
</thead>
<tbody class="surface-10 font-13">
{% for item in data.loadHistory %}
{% for item in data.loadHistory.history %}
<tr>
<td colspan="2">{{ item.reportName }}</td>
<td class="text-end">{{ item.findings }}</td>
Expand All @@ -141,7 +141,7 @@
</div>
</div>
<div class="mt-2 inter surface-10-opacity font-11">
Find more reports on: -
Find more reports on: {{ loadHistory.moreReportsPath }}
</div>

<div class="mt-12">
Expand Down