Skip to content

Commit 12d30f9

Browse files
committed
Fixed #79
Added copyright after the component name and version in the detail section.
1 parent 5a5ad89 commit 12d30f9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

about_code_tool/templates/default.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,12 @@ <h1>OPEN SOURCE SOFTWARE INFORMATION</h1>
4747

4848
{% for about_object in about_objects %}
4949
<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>
50+
<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 %}
5156
{% if about_object.notice %}
5257
<pre>{{ about_object.notice }}</pre>
5358
{% elif about_object.notice_file %}

0 commit comments

Comments
 (0)