File: testinfo_template.html

package info (click to toggle)
scap-security-guide 0.1.80-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 117,236 kB
  • sloc: xml: 275,600; sh: 85,544; python: 33,687; makefile: 27
file content (35 lines) | stat: -rw-r--r-- 970 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{{% extends "tables_template_common.html" %}}

{{% block table -%}}
<div style="text-align: center; font-size: normal ">
{{{ description }}}
</div>
<br><br>
<table>
  <thead>
    <td>ID</td>
    <td>Severity</td>
    <td>Title</td>
    <td>Discussion (Rationale)</td>
    <td>Fix Text (Description)</td>
    <td>Check Text (OCIL Check)</td>
    <td>SRG Refs</td>
    <td>CCI Refs</td>
    <td>800-53 Refs</td>
  </thead>
{{% for rule in rules %}}
  <tr>
    <td>{{{ "xccdf_org.ssgproject.content_rule_" + rule.id_ }}}</td>
    <td>{{{ rule.severity }}}</td>
    <td>{{{ rule.title }}}</td>
    <td>{{{ rule.rationale }}}</td>
    <td>{{{ rule.description }}}</td>
    <td><pre>{{{ rule.ocil }}}
      Is it the case that {{{ rule.ocil_clause }}}?</pre></td>
    <td>{{{ rule.references.srg | join(", ") }}}</td>
    <td>{{{ rule.references.cci | join(", ") }}}</td>
    <td>{{{ rule.references.nist | join(", ") }}}</td>
  </tr>
{{% endfor %}}
</table>
{{% endblock %}}