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

Add working HTML report template to default config #1336

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
- Integration enhancements:
- [integration]:
- [future tense verb] [integration enhancement]
- [integration bug fixes]:
- [future tense verb] [integration bug fix]
- HTML:
- Fix default HTML report template to work with CE
- Reporting enhancements:
- [report type]:
- [future tense verb] [reporting enhancement]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,25 +251,6 @@
<br/>
<% end %>

<h2>Conclusions and Recommendations</h2>
<% content_service.all_content_blocks.each do |block| %>
<% if block.fields['Type'] == "Conclusions"%>
<%= markup(block.fields['Description'], liquid: true) %>
<% end %>
<% end %>
<hr/>
<br/>

<h2>Appendix</h2>
<% content_service.all_content_blocks.each do |block| %>
<% if block.fields['Type'] == "Appendix"%>
<h3><%= markup(block.fields['Title'], liquid: true) %></h3>
<%= markup(block.fields['Description'], liquid: true) %>
<% end %>
<% end %>
<hr/>
<br/>

</div>
</div>
</div>
Expand Down
Loading