23 lines
657 B
TeX
Raw Normal View History

2020-01-26 16:19:29 +01:00
{%- import 'macros.tex' as macros %}
{{ testobject_information.Description }}
\begin{tabu} to \linewidth {lX}
\toprule
{\bf Library Information} & \\
\midrule
{%- for key in testobject_information %}
{%- if key != "Description" and key != 'Dependencies' %}
{{macros.latex_filter(key)}} & {{macros.latex_filter(testobject_information[key])}} \\
{%- endif %}
{%- endfor %}
{%- if 'Dependencies' in data.testobject_information %}
\midrule
{\bf Dependencies} & \\
\midrule
{%- for module, version in testobject_information.Dependencies %}
{{macros.latex_filter(module)}} & {{macros.latex_filter(version)}}\\
{%- endfor %}
{%- endif %}
\bottomrule
\end{tabu}