diff --git a/ietf/templates/community/manage_clist.html b/ietf/templates/community/manage_clist.html deleted file mode 100644 index 2a46ab5ae..000000000 --- a/ietf/templates/community/manage_clist.html +++ /dev/null @@ -1,138 +0,0 @@ -{% extends "base.html" %} -{# Copyright The IETF Trust 2015, All Rights Reserved #} -{% load origin staticfiles %} -{% load future %} -{% load staticfiles %} -{% load bootstrap3 %} - -{% block pagehead %} - -{% endblock %} - -{% block title %}{{ cl.long_name }}{% endblock %} - -{% block content %} - {% origin %} -

{{ cl.long_name }}

- - - -
-
- {% include "community/view_list.html" %} -
- -
-

- In order to add some individual documents to your list, you have to: -

- -

Document search

- - - - - - - - - {% for doc in cl.added_ids.all %} - - - - - - - {% endfor %} - -
NameStateTitle
{{ doc.display_name }}{{ doc.get_state }}{{ doc.title }}Remove
-
- -
- - - - - - {% for rule in cl.rule_set.all %} - {% with rule.get_callable_rule as callable %} - - - - - - - {% endwith %} - {% endfor %} - -
RuleValueDocuments
{{ callable.description }}{{ callable.show_value }}{% with rule.cached_ids.count as count %}{{ count }} document{{ count|pluralize }}{% endwith %}Remove
- -

Add a new rule

- -
- {% csrf_token %} - {% bootstrap_form rule_form %} - - {% buttons %} - - {% endbuttons %} -
-
- -
- {% include "community/customize_display.html" %} -
- -
-

Feel free to share the following links if you need to:

- - - -

Export your list to CSV format:

- -
-
- -{% endblock %} - -{% block js %} - - -{% comment %} -Stay on the current tab after form submission. -If other pages need this functionality, it should move to ietf.js. -{% endcomment %} - - -{% endblock %}