Tweak the menubar listing of community tracking to show when login is needed, some other text tweaks, and fitting the I-D tracking links under Drafts and RFCs where they seem to belong.

- Legacy-Id: 4568
This commit is contained in:
Henrik Levkowetz 2012-07-03 13:44:52 +00:00
parent 1bc2f7daa2
commit 71894599bf
2 changed files with 15 additions and 11 deletions

View file

@ -41,9 +41,9 @@ class CommunityList(models.Model):
def short_name(self): def short_name(self):
if self.user: if self.user:
return 'Personal list' return 'My tracked I-Ds'
else: else:
return '%s list' % self.group.acronym return '%s tracked I-Ds' % self.group.acronym
def long_name(self): def long_name(self):
if self.user: if self.user:

View file

@ -1,4 +1,4 @@
{% comment %} {% comment %}<!--
Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com> All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
@ -30,7 +30,7 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
{% endcomment %} {% endcomment %}
{% load wg_menu %} {% load wg_menu %}
{% load ietf_filters ietf_streams community_tags %} {% load ietf_filters ietf_streams community_tags %}
@ -77,20 +77,24 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<li><a href="http://tools.ietf.org/wg/concluded">Concluded WGs</a></li> <li><a href="http://tools.ietf.org/wg/concluded">Concluded WGs</a></li>
<li><a href="http://www.ietf.org/list/nonwg.html">Non-WG Lists</a></li> <li><a href="http://www.ietf.org/list/nonwg.html">Non-WG Lists</a></li>
<li class="sect">Drafts&nbsp;&amp;&nbsp;RFCs</li>
<li><a href="/doc/">Document search:</a></li>
<li><form action="/doc/search/" method="get" style="padding-bottom:0;margin-bottom:0;"><input type="text" style="margin-left:10px; width:100px; border:1px solid #89d;" name="name" /><input type="hidden" name="activeDrafts" value="on"/><input type="hidden" name="rfcs" value="on"/></form></li>
<li><a href="{% url submit_index %}">Submit a draft</a></li>
{% if user|in_group:"WG Chair" %}
<li><a href="{% url submit_approvals %}">Approve a draft</a></li>
{% endif %}
{% get_user_managed_lists user as community_lists %} {% get_user_managed_lists user as community_lists %}
{% if community_lists %} {% if community_lists %}
<li class="sect">Community ID lists</li> <li><a href="{{ community_lists.personal.get_manage_url }}">{{ community_lists.personal.short_name }}</a>&nbsp;
<li><a href="{{ community_lists.personal.get_manage_url }}">{{ community_lists.personal.short_name }}</a>
{% for cl in community_lists.group %} {% for cl in community_lists.group %}
<li><a href="{{ cl.get_manage_url }}">{{ cl.short_name }}</a> <li><a href="{{ cl.get_manage_url }}">{{ cl.short_name }}</a>
{% endfor %} {% endfor %}
{% else %}
<li><a href="http://{{ request.get_host }}/accounts/login/?next={{request.get_full_path|urlencode}}" rel="nofollow">Sign in to track drafts</a></li>
{% endif %} {% endif %}
<li class="sect">Drafts&nbsp;&amp;&nbsp;RFCs</li>
<li><a href="/doc/">Search</a></li>
<li><form action="/doc/search/" method="get" style="padding-bottom:0;margin-bottom:0;"><input type="text" style="margin-left:10px; width:100px; border:1px solid #89d;" name="name" /><input type="hidden" name="activeDrafts" value="on"/><input type="hidden" name="rfcs" value="on"/></form></li>
<li><a href="{% url submit_index %}">Submit a draft</a></li>
<li class="sect">Meetings</li> <li class="sect">Meetings</li>
<li><a href="/meeting/agenda/">Agenda</a></li> <li><a href="/meeting/agenda/">Agenda</a></li>