{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% load static %} {% load misc_filters %} {% block pagehead %} {{ all_forms|merge_media:'css' }} {% endblock %} {% block title %}Manage {{ clist.long_name }}{% endblock %} {% block content %} {% origin %}

Manage {{ clist.long_name }}

{% bootstrap_messages %}

The list currently tracks {{ total_count }} document{{ total_count|pluralize }}.

Back to list

Individual documents

{% if individually_added %}

The list tracks {{ individually_added|length }} individually added document{{ individually_added|length|pluralize }}:

{% for d in individually_added %} {% endfor %}
{{ d.name }}
{% csrf_token %}
{% else %}

The list does not track any individually added documents yet.

{% endif %} {% if clist.group %}

Add individual documents here:

{% else %}

Conveniently track individual documents in your personal list with the track icon in search results.

You can also add documents here:

{% endif %}
{% csrf_token %} {% bootstrap_field add_doc_form.documents show_label=False %}

Search rules

You can track documents with a search rule. When a document fulfills the search criteria, it will automatically show up in the list.

{% if rules %} {% for rule in rules %} {% endfor %}
RuleValueDocuments
{{ rule.get_rule_type_display }} {% if "group" in rule.rule_type or "area" in rule.rule_type %} {{ rule.group.acronym }} {% elif "state_" in rule.rule_type %} {{ rule.state }} {% elif "author" in rule.rule_type or rule.rule_type == "ad" or "shepherd" in rule.rule_type %} {{ rule.person }} {% elif "name_contains" in rule.rule_type %} {{ rule.text }} {% endif %} {{ rule.matching_documents_count }} match{{ rule.matching_documents_count|pluralize:"es" }}
{% csrf_token %}
{% else %}

No rules defined.

{% endif %}
Add a new rule

Add a new rule

{% csrf_token %} {% bootstrap_form rule_type_form %}
{% if rule_form %} {% bootstrap_form rule_form %} {% endif %}
{% buttons %} {% endbuttons %}
{% for rule_type, f in empty_rule_forms.items %}
{% bootstrap_form f %}
{% endfor %}
{% endblock %} {% block js %} {{ all_forms|merge_media:'js' }} {% endblock %}