4cdf533565
This patch cleans up various parts of the security role docs: * Updates README files * Uses jinja2 includes rather than sphinx includes (faster builds) * Adds sphinx refs for each STIG control and implementation status * Adds ToC's to pages that didn't have them * Updated getting started and special notes guide * Makes deviations more clear Change-Id: I1eed2705c64a857bd94577dbe735f2516ca87732
17 lines
549 B
Django/Jinja
17 lines
549 B
Django/Jinja
{% set rule = all_deployer_notes[stig_id] %}
|
|
{% set page_title = rule['title'] | trim + ' (' + rule['id'] + ')'%}
|
|
{{ page_title }}
|
|
{{ "-" * page_title | length }}
|
|
|
|
{{ rule['description']}}
|
|
|
|
Details: `{{ rule['id'] }} in STIG Viewer`_
|
|
|
|
.. _{{ rule['id'] }} in STIG Viewer: https://www.stigviewer.com/stig/red_hat_enterprise_linux_6/2015-05-26/finding/{{ rule['id'] }}
|
|
|
|
Notes for deployers and auditors
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
**Implementation Status:** {{ rule['deployer_notes']['status'] | title }}
|
|
{{ rule['deployer_notes']['content'] }}
|