view rhodecode/templates/shortlog/shortlog.html @ 3652:8a8a559eaf95 beta

pullrequests: state "closed" explicitly A closed-as-in-locked icon did not communicate the closed-as-in-inactive state clearly. Instead we say "Closed" and make the text greyed out. Not pretty but more efficient.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 03 Apr 2013 15:56:12 +0200
parents eacd33e0c5b3
children
line wrap: on
line source

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

<%def name="title()">
    ${_('%s Lightweight Changelog') % c.repo_name} &middot; ${c.rhodecode_name}
</%def>


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

<%def name="page_nav()">
    ${self.menu('repositories')}
</%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>