{{source_file.in_doctree_source_file_rel_path}}
{# requirements #} {%- set source_file_requirement_links = traceability_index.get_source_file_requirement_links(source_file.in_doctree_source_file_rel_path) -%} {%- if source_file_requirement_links -%}
The following requirements refer to this source file:
{%- for requirement in source_file_requirement_links -%} {% include "source_file_view/source_requirement.jinja.html" %} {%- endfor -%}
{%- endif -%} {# ranges #} {%- set source_file_range_reqs = traceability_index.get_source_file_all_range_reqs(source_file.in_doctree_source_file_rel_path) -%} {%- if source_file_range_reqs -%}
The following requirements refer to the ranges in this source file:
{%- for requirement in source_file_range_reqs -%} {% include "source_file_view/source_requirement.jinja.html" %} {%- endfor -%}
{%- endif -%}
{%- for line in source_file_content -%}
{{loop.index}}
{%- if line != "" -%} {# #}
{{ line }}
{%- else -%}
 
{%- endif -%}
{%- endfor -%}