1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('%s Lightweight Changelog') % c.repo_name} · ${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))} » ${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>