Skip to content

Commit 4cb0643

Browse files
committed
Tweaked the community tracker links in the lefthand menubar to avoid line breaking for the WG documents link visible to WG chairs.
- Legacy-Id: 4584
1 parent 73f00aa commit 4cb0643

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/community/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def check_manager(self, user):
4141

4242
def short_name(self):
4343
if self.user:
44-
return 'My tracked I-Ds'
44+
return 'mine'
4545
else:
46-
return '%s tracked I-Ds' % self.group.acronym
46+
return '%s' % self.group.acronym
4747

4848
def long_name(self):
4949
if self.user:

ietf/templates/base_leftmenu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@
8787
{% endif %}
8888
{% get_user_managed_lists user as community_lists %}
8989
{% if community_lists %}
90-
<li><a href="{{ community_lists.personal.get_manage_url }}">{{ community_lists.personal.short_name }}</a>&nbsp;
90+
<li><a href="{{ community_lists.personal.get_manage_url }}">My tracked docs</a>&nbsp;</li>
9191
{% for cl in community_lists.group %}
92-
<li><a href="{{ cl.get_manage_url }}">{{ cl.short_name }}</a>
92+
<li><a href="{{ cl.get_manage_url }}">WG {{ cl.short_name }} docs</a></li>
9393
{% endfor %}
9494
{% else %}
9595
<li><a href="http://{{ request.get_host }}/accounts/login/?next={{request.get_full_path|urlencode}}" rel="nofollow">Sign in to track drafts</a></li>

0 commit comments

Comments
 (0)