Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
o adding last result and all results to the project view
git-svn-id: https://svn.apache.org/repos/asf/maven/continuum/trunk@209801 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jvanzyl committed Jul 8, 2005
1 parent 5a2eeb3 commit e8fa98d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions continuum-web/src/main/resources/templates/screens/View.vm
Expand Up @@ -25,6 +25,16 @@ $page.setTitle( "Continuum - Project View: ${item.name}" )
<input type="submit" name="checkout-project" value="Checkout"/>
</form>
</td>

#if ( $item.lastBuildId )
#set ( $build = $continuum.getLatestBuildForProject($item.id) )
<td><a href="$link.setPage('ProjectBuild.vm').addPathInfo('view', "ProjectBuild").addPathInfo('id', $item.id).addPathInfo('buildId', $build.id)">Last Result</a></td>
#end

#if ( $item.lastBuildId )
<td><a href="$link.setPage('ProjectBuilds.vm').addPathInfo('view', "ProjectBuilds").addPathInfo('id', $item.id)">All Results</a></td>
#end

</tr>
</table>
</div>
Expand Down

0 comments on commit e8fa98d

Please sign in to comment.