page. Each WG/RG now gets a list with an initial set of rules to populate the list. Refine the community list management interface a bit to support the group lists better - group lists aren't connected to the usual track icons so need to be able to add/remove individual drafts. Change the "name contains" rule to support regular expressions to enable each group to have a default replacement for the previously implemented "related documents" search. Maintain a materialized view of the regexp-matched drafts with a call in the submit code to avoid having to scan all drafts/~1000 group rules all the time. - Legacy-Id: 10963
24 lines
633 B
HTML
24 lines
633 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}{{ clist.long_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ clist.long_name }}</h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
{% if can_manage_list %}
|
|
<a class="btn btn-primary" href="{% url "community_personal_manage_list" clist.user.username %}">
|
|
<i class="glyphicon glyphicon-cog"></i>
|
|
Manage list
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% include "doc/search/search_results.html" with skip_no_matches_warning=True %}
|
|
{% include "community/list_menu.html" %}
|
|
{% endblock %}
|