We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5ad89 commit 12d30f9Copy full SHA for 12d30f9
about_code_tool/templates/default.html
@@ -47,7 +47,12 @@ <h1>OPEN SOURCE SOFTWARE INFORMATION</h1>
47
48
{% for about_object in about_objects %}
49
<div class="oss-component" id="component_{{ loop.index0 }}">
50
- <h3 class="component-name">{{ about_object.name }}{% if about_object.version %} {{ about_object.version }}{% endif %}</h3>
+ <h3 class="component-name">{{ about_object.name }}
51
+ {% if about_object.version %}{{ about_object.version }}{% endif %}
52
+ </h3>
53
+ {% if about_object.copyright %}
54
+ <pre>{{about_object.copyright}}</pre>
55
+ {% endif %}
56
{% if about_object.notice %}
57
<pre>{{ about_object.notice }}</pre>
58
{% elif about_object.notice_file %}
0 commit comments