##// END OF EJS Templates
Complete copyright notices for web interface; change footer to link to them....
Complete copyright notices for web interface; change footer to link to them. The original copyright notice found in the footer was not accurate as it included only one of the many copyright holders in this project. This change creates an "about" page, which currently contains just the copyright and license information. It links to repository for additional potential copyright holders not listed on the about page. Unlisted contributors are mentioned in template comments. Html links for Kallithea is fixed and we link to Conservancy. Display of version information in the footer is improved.

File last commit:

r3197:b4f40152 beta
r4178:9dd72670 kallithea-2.2.5-r...
Show More
followers_data.html
32 lines | 1.1 KiB | text/html | HtmlLexer
#179 Added followers page
r1279 ## -*- coding: utf-8 -*-
% for f in c.followers_pager:
<div>
<div class="follower_user">
<div class="gravatar">
<img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/>
</div>
<span style="font-size: 20px"> <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname})</span>
</div>
<div style="clear:both;padding-top: 10px"></div>
Vincent Duvert
Added localization for the “quick filter” menu item and improved localization on the followers page.
r2420 <div class="follower_date">${_('Started following -')}
Added h.tooltip to all places that tooltip_title is used....
r2427 <span class="tooltip" title="${h.tooltip(f.follows_from)}"> ${h.age(f.follows_from)}</span></div>
#179 Added followers page
r1279 <div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div>
White-space cleanup
r1888 </div>
% endfor
#179 Added followers page
r1279
<div class="pagination-wh pagination-left">
<script type="text/javascript">
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421 YUE.onDOMReady(function(){
YUE.delegate("followers","click",function(e, matchedEl, container){
new tooltip implementation...
r2971 ypjax(e.target.href,"followers",function(){
Mads Kiilerich
html: don't use tabs
r3197 show_more_event();
tooltip_activate();
show_changeset_tooltip();
new tooltip implementation...
r2971 });
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421 YUE.preventDefault(e);
},'.pager_link');
});
#179 Added followers page
r1279 </script>
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421 ${c.followers_pager.pager('$link_previous ~2~ $link_next')}
White-space cleanup
r1888 </div>