From 6e05c88770e682ef4c82f310ad123d4c79389b05 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 26 Jun 2016 23:11:32 +0000 Subject: [PATCH] Removed dead template. - Legacy-Id: 11476 --- ietf/templates/community/manage_clist.html | 138 --------------------- 1 file changed, 138 deletions(-) delete mode 100644 ietf/templates/community/manage_clist.html 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: -

-
    -
  • Search for the document or documents you want to add using the datatracker search form.
  • -
  • In the search results, you'll find a link to add individual documents to your list.
  • -
-

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" %} -
- - -
- -{% 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 %}