##// END OF EJS Templates
css + templates update for user dashboards
marcink -
r737:d5bad4a2 beta
parent child Browse files
Show More
@@ -1796,6 +1796,15 b' float: right;'
1796 margin-top: 2px;
1796 margin-top: 2px;
1797 }
1797 }
1798
1798
1799 .currently_following{
1800
1801 padding-left: 10px;
1802 padding-bottom:5px;
1803
1804 }
1805
1806
1807
1799 .add_icon {
1808 .add_icon {
1800 background:url("../images/icons/add.png") no-repeat scroll 3px;
1809 background:url("../images/icons/add.png") no-repeat scroll 3px;
1801 height:16px;
1810 height:16px;
@@ -51,19 +51,18 b''
51 <div>
51 <div>
52 %if c.following:
52 %if c.following:
53 %for entry in c.following:
53 %for entry in c.following:
54 <div>
54 <div class="currently_following">
55 %if entry.follows_user_id:
55 %if entry.follows_user_id:
56 <img alt="" src="/images/icons/user.png"/>
56 <img title="${_('following user')}" alt="${_('user')}" src="/images/icons/user.png"/>
57
57 ${entry.follows_user.full_contact}
58 ${entry.follows_user.username}
59 %endif
58 %endif
60
59
61 %if entry.follows_repo_id:
60 %if entry.follows_repo_id:
62
61
63 %if entry.follows_repository.private:
62 %if entry.follows_repository.private:
64 <img alt="" src="/images/icons/lock_closed.png"/>
63 <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="/images/icons/lock.png"/>
65 %else:
64 %else:
66 <img alt="" src="/images/icons/lock_open.png"/>
65 <img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="/images/icons/lock_open.png"/>
67 %endif
66 %endif
68
67
69 ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',
68 ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',
General Comments 0
You need to be logged in to leave comments. Login now