12345678910111213141516171819202122 |
- {%- 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}
|