Files @ 33ca6d0f7058
Branch filter:

Location: kallithea/kallithea/templates/forks/forks.html

Mads Kiilerich
style: introduce "clearfix" class where the Bootstrap migration will need it

Based on work by Dominik Ruf.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

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

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

<%block name="header_menu">
    ${self.menu('repositories')}
</%block>

<%def name="main()">
${self.repo_context_bar('showforks')}
<div class="panel panel-primary">
    <!-- box / title -->
    <div class="panel-heading clearfix">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
        <div id="forks">
            <%include file='forks_data.html'/>
        </div>
    </div>
</div>
<script type="text/javascript">
  $(document).ready(function(){
      var $forks = $('#forks');
      $forks.on('click','.pager_link',function(e){
          asynchtml(e.target.href, $forks, function(){
              show_more_event();
              tooltip_activate();
              show_changeset_tooltip();
          });
          e.preventDefault();
      });
  });
</script>
</%def>