added url and category to detail page

This commit is contained in:
Sebastian Sdorra
2011-11-06 15:52:59 +01:00
parent 1c66684ea9
commit 023e247952

View File

@@ -9,6 +9,16 @@
<th>Name</th>
<td>${latest.name}</td>
</tr>
<tr>
<th>Category</th>
<td>
<#if latest.category??>
${latest.category}
<#else>
Miscellaneous
</#if>
</td>
</tr>
<tr>
<th>GroupId</th>
<td>${latest.groupId}</td>
@@ -21,6 +31,16 @@
<th>Author</th>
<td>${latest.author}</td>
</tr>
<#if latest.url??>
<tr>
<th>URL</th>
<td>
<a href="${latest.url}" target="_blank">
${latest.url}
</a>
</td>
</tr>
</#if>
</table>
<p>&nbsp;</p>