From 4cb0643c9e3b8333c8d7ce641a8c713d6e8f54b4 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 4 Jul 2012 12:14:37 +0000 Subject: [PATCH] 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 --- ietf/community/models.py | 4 ++-- ietf/templates/base_leftmenu.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ietf/community/models.py b/ietf/community/models.py index 19c8cabd4..399ebf3f9 100644 --- a/ietf/community/models.py +++ b/ietf/community/models.py @@ -41,9 +41,9 @@ class CommunityList(models.Model): def short_name(self): if self.user: - return 'My tracked I-Ds' + return 'mine' else: - return '%s tracked I-Ds' % self.group.acronym + return '%s' % self.group.acronym def long_name(self): if self.user: diff --git a/ietf/templates/base_leftmenu.html b/ietf/templates/base_leftmenu.html index 9fc982767..f7767efa7 100644 --- a/ietf/templates/base_leftmenu.html +++ b/ietf/templates/base_leftmenu.html @@ -87,9 +87,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. {% endif %} {% get_user_managed_lists user as community_lists %} {% if community_lists %} -
  • {{ community_lists.personal.short_name }}  +
  • My tracked docs 
  • {% for cl in community_lists.group %} -
  • {{ cl.short_name }} +
  • WG {{ cl.short_name }} docs
  • {% endfor %} {% else %}
  • Sign in to track drafts