view kallithea/templates/followers/followers.html @ 8997:66fcd3993563 draft i18n

i18n: updated translation for Chinese (Simplified) Currently translated at 45.0% (487 of 1082 strings)
author Poesty Li <poesty7450@gmail.com>
date Tue, 05 Mar 2024 11:40:54 +0100
parents 19d93bd709bf
children
line wrap: on
line source

## -*- 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="panel panel-primary">
    <div class="panel-heading clearfix">
        ${self.breadcrumbs()}
    </div>
    <div class="panel-body">
        <div id="followers">
            <%include file='followers_data.html'/>
        </div>
    </div>
</div>
<script>
  'use strict';
  $(document).ready(function(){
    var $followers = $('#followers');
    $followers.on('click','.pager_link',function(e){
        asynchtml(e.target.href, $followers, function(){
            show_more_event();
            tooltip_activate();
        });
        e.preventDefault();
    });
  });
</script>
</%def>