{{#if foundProblems}}
{{#if highPriorityProblems.length}}

{{d-icon "exclamation-triangle"}} {{i18n "admin.dashboard.critical_problems_found"}}

{{else}}

{{d-icon "heart"}} {{i18n "admin.dashboard.problems_found"}}

{{/if}}
{{#conditional-loading-section isLoading=loadingProblems}} {{#if highPriorityProblems.length}}
    {{#each highPriorityProblems as |problem|}}
  • {{html-safe problem.message}}
  • {{/each}}
{{/if}}
    {{#each lowPriorityProblems as |problem|}}
  • {{html-safe problem.message}}
  • {{/each}}

{{d-button action=refreshProblems class="btn-default" icon="sync" label="admin.dashboard.refresh_problems"}} {{i18n "admin.dashboard.last_checked"}}: {{problemsTimestamp}}

{{/conditional-loading-section}}
{{/if}}