Files @ 3a3ec35466e7
Branch filter:

Location: kallithea/kallithea/templates/followers/followers.html

Thomas De Schampheleire
templates: move site branding in page title to base template

Instead of repeating the same three lines in each and every template, move
it to the base template.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%block name="title">
    ${_('%s Followers') % c.repo_name}
</%block>

<%def name="breadcrumbs_links()">
    ${_('Followers')}
</%def>

<%block name="header_menu">
    ${self.menu('repositories')}
</%block>
<%def name="main()">
${self.repo_context_bar('followers')}
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <div id="followers">
            ${c.followers_data}
        </div>
    </div>
</div>
</%def>