view rhodecode/templates/shortlog/shortlog.html @ 3527:87c97fcea029 beta

Adding the context bar too all pages related to a Repository. Deleted top menu items that are on the context bar already.
author Leonardo <leo@unity3d.com>
date Mon, 04 Mar 2013 12:15:34 +0100
parents f74be3359044
children 9e677f6d34cb
line wrap: on
line source

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

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


<%def name="breadcrumbs_links()">
    ${h.link_to(_(u'Home'),h.url('/'))}
    &raquo;
    ${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
    &raquo;
    %if c.file_history:
        ${h.link_to(_('shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
        &raquo;
        ${c.file_history}
    %else:
        ${_('shortlog')}
    %endif
</%def>

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