Skip to content

Commit 5cafa08

Browse files
committed
Added a missing table column to the WG document page for the case when the user isn't logged in. Addresses issue ietf-tools#1601 (but add links in the column are still missing).
- Legacy-Id: 9081
1 parent 8b4be00 commit 5cafa08

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ietf/templates/doc/search/search_result_row.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<tr class="{{ forloop.counter|divisibleby:2|yesno:"oddrow,evenrow" }}">
3737
{% if user.is_authenticated %}
3838
{% if not doc.name in have_doc_status %}
39-
<td></td>
39+
<td>&nbsp;</td>
4040
{% elif doc.name in doc_is_tracked %}
4141
<td class="removefromlist">
4242
<a href="{% url "community_remove_track_document" doc.name %}" title="Remove from your personal ID list"><img src="/images/remove_from_list.png" alt="Remove from your personal ID list" /></a>
@@ -46,7 +46,10 @@
4646
<a href="{% url "community_add_track_document" doc.name %}" title="Add to your personal ID list"><img src="/images/add_to_list.png" alt="Add to your personal ID list" /></a>
4747
</td>
4848
{% endif %}
49+
{% else %}
50+
<td>&nbsp;</td>
4951
{% endif %}
52+
5053
<td class="doc">
5154
<a href="{{ doc.get_absolute_url }}">{% if doc.get_state_slug == "rfc" %}RFC {{ doc.rfc_number }}{% else %}{{ doc.name }}-{{ doc.rev }}{% endif %}</a>
5255

0 commit comments

Comments
 (0)