Skip to content

Commit

Permalink
Add Search Program
Browse files Browse the repository at this point in the history
  • Loading branch information
danjasuw committed Oct 28, 2015
1 parent 2033e45 commit e351693
Show file tree
Hide file tree
Showing 11 changed files with 3,192 additions and 2,740 deletions.
38 changes: 38 additions & 0 deletions WebRoot/WEB-INF/jsp-includes/searchDetailsBlock.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,45 @@
<tr>
<td>Linker:</td>
<td><c:out value="${ search_details.linkersDisplayString }"></c:out></td>
</tr>


<tr>
<td valign="top" >
Search
Program<c:if test="${ fn:length( search_details.searchPrograms ) > 1 }" >s</c:if>:
</td>

<c:choose>
<c:when test="${ empty search_details.searchPrograms }">
<td style="padding-top: 2px;">
Not Found
</td>
</c:when>
<c:otherwise>
<td style="border-width:0px; padding: 0px;">

<table style="border-width:0px; border-spacing: 0px; ">

<c:forEach var="searchProgram" items="${ search_details.searchPrograms }">
<tr>
<td style="padding-right: 5px;">
<c:out value="${ searchProgram.displayName }"></c:out>
</td>
<td >
<c:out value="${ searchProgram.version }"></c:out>
</td>
</tr>
</c:forEach>

</table>

</td>
</c:otherwise>
</c:choose>
</tr>


<tr>
<td>Upload&nbsp;date:</td>
<td><bean:write name="search" property="formattedLoadTime" /></td>
Expand Down

0 comments on commit e351693

Please sign in to comment.