Skip to content

Commit 239cd5d

Browse files
committed
Tweak the display of explicitly added documents (saying 'explicitly' rather than 'manually', and including the active/expired/rfc state of the document.
- Legacy-Id: 4529
1 parent e3a2b61 commit 239cd5d

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

ietf/templates/community/manage_clist.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>{{ cl.long_name }}</h1>
1515
<div id="mytabs" class="yui-navset">
1616
<ul class="yui-nav">
1717
<li class="selected"><a href="#view"><em>Documents</em></a></li>
18-
<li><a href="#documents"><em>Manually added</em></a></li>
18+
<li><a href="#documents"><em>Explicitly added</em></a></li>
1919
<li><a href="#rules"><em>Rules</em></a></li>
2020
<li><a href="#custom"><em>Display customization</em></a></li>
2121
<li><a href="#info"><em>Exports</em></a></li>
@@ -28,19 +28,20 @@ <h1>{{ cl.long_name }}</h1>
2828
</div>
2929

3030
<div id="documents">
31-
<h2>Documents manually added to this list</h2>
31+
<h2>Documents explicitly included, from a document search.</a></h2>
3232
<p>
3333
In order to add some individual documents to your list you have to:
3434
</p>
3535
<ul>
36-
<li>Search the document or documents you want to add using <a href="/doc/search">the datatracker searcher</a>.</li>
36+
<li>Search the document or documents you want to add using <a href="/doc/search">the datatracker search form</a>.</li>
3737
<li>In the search result you'll find a link to add individual documents to your list.</li>
3838
</ul>
3939
<table class="ietf-table">
40-
<tr><th>Name</th><th>Title</th><th>Remove from list</th></tr>
40+
<tr><th>Name</th><th>State</th><th>Title</th><th>Remove from list</th></tr>
4141
{% for doc in cl.added_ids.all %}
4242
<tr class="{% cycle oddrow,evenrow %}">
4343
<td>{{ doc }}</td>
44+
<td>{{ doc.get_state }}</td>
4445
<td><a href="{{ doc.get_absolute_url }}"</a>{{ doc.title }}</td>
4546
<td><a href="{% url community_remove_document cl.pk doc.pk %}">Remove</a></td>
4647
</tr>

0 commit comments

Comments
 (0)