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