Show More
@@ -1796,6 +1796,15 b' float: right;' | |||
|
1796 | 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 | 1808 | .add_icon { |
|
1800 | 1809 | background:url("../images/icons/add.png") no-repeat scroll 3px; |
|
1801 | 1810 | height:16px; |
@@ -51,19 +51,18 b'' | |||
|
51 | 51 | <div> |
|
52 | 52 | %if c.following: |
|
53 | 53 | %for entry in c.following: |
|
54 | <div> | |
|
54 | <div class="currently_following"> | |
|
55 | 55 | %if entry.follows_user_id: |
|
56 | <img alt="" src="/images/icons/user.png"/> | |
|
57 | ||
|
58 | ${entry.follows_user.username} | |
|
56 | <img title="${_('following user')}" alt="${_('user')}" src="/images/icons/user.png"/> | |
|
57 | ${entry.follows_user.full_contact} | |
|
59 | 58 | %endif |
|
60 | 59 | |
|
61 | 60 | %if entry.follows_repo_id: |
|
62 | 61 | |
|
63 | 62 | %if entry.follows_repository.private: |
|
64 |
<img alt="" src="/images/icons/lock |
|
|
63 | <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="/images/icons/lock.png"/> | |
|
65 | 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 | 66 | %endif |
|
68 | 67 | |
|
69 | 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