Skip to content
This repository has been archived by the owner on Jul 25, 2018. It is now read-only.

Add project version to view and external id to details view #245

Merged
merged 2 commits into from
Sep 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@
<td>Tag:</td>
<td><sw360:out value="${project.tag}"/></td>
</tr>
<tr>
<td>External ids:</td>
<td><sw360:DisplayMap value="${project.externalIds}"/></td>
</tr>
</table>

<table class="table info_table" id="projectAdminData" title="Project Admin Overview">
Expand Down
4 changes: 2 additions & 2 deletions frontend/sw360-portlet/src/main/webapp/html/projects/view.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@
result.push({
"DT_RowId": "${project.id}",
"id": '${project.id}',
"name": '${project.name}',
"description": "<sw360:DisplayDescription description="${project.description}" maxChar="140" jsQuoting="\""/>",
"name": '<sw360:ProjectName project="${project}"/>',
"description": '<sw360:DisplayDescription description="${project.description}" maxChar="140" jsQuoting="\""/>',
"state":"<sw360:DisplayEnum value='${project.state}'/>",
"clearing":'<sw360:DisplayReleaseClearingStateSummary releaseClearingStateSummary="${project.releaseClearingStateSummary}"/>',
"responsible":'<sw360:DisplayUserEmail email="${project.projectResponsible}"/>',
Expand Down