view rhodecode/templates/forks/forks.html @ 2975:e0da2c0ecee1 beta

fixes #625 Git-Tags are not displayed in Shortlog - improved git extraction of git tags if they are associated to a commit - added not implemented tags() function for git changesets
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 29 Oct 2012 22:26:44 +0100
parents 79818f546538
children f74be3359044
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('%s Forks') % c.repo_name} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs_links()">
    ${h.link_to(_(u'Home'),h.url('/'))}
    &raquo;
    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
    &raquo;
    ${_('forks')}
</%def>

<%def name="page_nav()">
    ${self.menu('forks')}
</%def>
<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <div id="forks">
            ${c.forks_data}
        </div>
    </div>
</div>
</%def>