12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
|
|
<% if @db_exports.empty? -%>
|
|
<%= notice_icon %> No DB Exports Found.
|
|
<% else -%>
|
|
<%= notice_icon %> Db Export(s) Identified:
|
|
<% @db_exports.each do |db_export| -%>
|
|
|
|
<%= critical_icon %> <%= db_export %>
|
|
<%= render('@finding', item: db_export) -%>
|
|
<% end -%>
|
|
<% end %>
|