Adds navigation to those views to the base menus. Unifies URL patterns shared between group/urls and group/urls_info, exposing the same view at, e.g., /group/stir and /wg/stir/. Improves testing, primarily of group/info.py Commit ready for merge. - Legacy-Id: 9924
9 lines
238 B
HTML
9 lines
238 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}{% load origin %}{% origin %}
|
|
<ul class="dropdown-menu" role="menu">
|
|
{% for p in parents %}
|
|
<li>
|
|
<a href="{{ p.menu_url }}">Active {{ p.name }}s</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|