aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/background-tasks/views/ScannerContextView.hbs
blob: d1de3da84c71217bb17523a8af43d0b019eb90e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form id="deactivate-user-form" autocomplete="off">
  <div class="modal-head">
    <h2>{{t 'background_tasks.scanner_context'}}: {{task.componentName}} [{{t 'background_task.type' task.type}}]</h2>
  </div>
  <div class="modal-body modal-container">
    <div class="js-modal-messages"></div>

    {{#if scannerContext}}
      <pre class="js-task-scanner-context">{{scannerContext}}</pre>
    {{else}}
      <i class="spinner"></i>
    {{/if}}
  </div>
  <div class="modal-foot">
    <a href="#" class="js-modal-close">{{t 'close'}}</a>
  </div>
</form>