Show More
@@ -1,28 +1,28 | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | % for f in c.followers_pager: |
|
4 | 4 | <div> |
|
5 | 5 | <div class="follower_user"> |
|
6 | 6 | <div class="gravatar"> |
|
7 | 7 | <img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/> |
|
8 | 8 | </div> |
|
9 | 9 | <span style="font-size: 20px"> <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname})</span> |
|
10 | 10 | </div> |
|
11 | 11 | <div style="clear:both;padding-top: 10px"></div> |
|
12 |
<div class="follower_date">${_('Started following')} |
|
|
12 | <div class="follower_date">${_('Started following -')} | |
|
13 | 13 | <span class="tooltip" title="${f.follows_from}"> ${h.age(f.follows_from)}</span></div> |
|
14 | 14 | <div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div> |
|
15 | 15 | </div> |
|
16 | 16 | % endfor |
|
17 | 17 | |
|
18 | 18 | <div class="pagination-wh pagination-left"> |
|
19 | 19 | <script type="text/javascript"> |
|
20 | 20 | YUE.onDOMReady(function(){ |
|
21 | 21 | YUE.delegate("followers","click",function(e, matchedEl, container){ |
|
22 | 22 | ypjax(e.target.href,"followers",function(){show_more_event();tooltip_activate();}); |
|
23 | 23 | YUE.preventDefault(e); |
|
24 | 24 | },'.pager_link'); |
|
25 | 25 | }); |
|
26 | 26 | </script> |
|
27 | 27 | ${c.followers_pager.pager('$link_previous ~2~ $link_next')} |
|
28 | 28 | </div> |
@@ -1,20 +1,20 | |||
|
1 | 1 | ## -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | <li class="qfilter_rs"> |
|
4 |
<input type="text" style="border:0" value="quick filter..." name="filter" size=" |
|
|
4 | <input type="text" style="border:0" value="${_('quick filter...')}" name="filter" size="20" id="q_filter_rs" /> | |
|
5 | 5 | </li> |
|
6 | 6 | |
|
7 | 7 | %for repo in c.repos_list: |
|
8 | 8 | |
|
9 | 9 | %if repo['dbrepo']['private']: |
|
10 | 10 | <li> |
|
11 | 11 | <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/> |
|
12 | 12 | ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])} |
|
13 | 13 | </li> |
|
14 | 14 | %else: |
|
15 | 15 | <li> |
|
16 | 16 | <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" /> |
|
17 | 17 | ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])} |
|
18 | 18 | </li> |
|
19 | 19 | %endif |
|
20 | 20 | %endfor |
General Comments 0
You need to be logged in to leave comments.
Login now