Skip to content

Commit

Permalink
fix: Clean up view_feedback_pending
Browse files Browse the repository at this point in the history
- Remove "Unclassified" column header, which caused misalignment in the table body.

- Show the message author - previously displayed as `(None)`.
  • Loading branch information
pselkirk committed Jul 21, 2023
1 parent a1a88c5 commit 2ede70e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions ietf/templates/nomcom/view_feedback_pending.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{# Copyright The IETF Trust 2015-2023, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% load static %}
Expand Down Expand Up @@ -73,10 +73,6 @@ <h2>Feedback pending from email list</h2>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">U</th>
<td>Unclassified</td>
</tr>
{% for legend, t in type_dict.items %}
<tr>
<th scope="row">{{ legend }}</th>
Expand All @@ -89,7 +85,6 @@ <h2>Feedback pending from email list</h2>
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col" class="text-center" title="Unclassified">U</th>
{% for legend, t in type_dict.items %}<th scope="col" class="text-center" title="{{ t.name }}">{{ legend }}</th>{% endfor %}
<th scope="col">Author</th>
<th scope="col">Subject</th>
Expand Down Expand Up @@ -118,7 +113,7 @@ <h2>Feedback pending from email list</h2>
title="{{ choice.1 }}">
</td>
{% endfor %}
<td>{% person_link form.instance.author %}</td>
<td>{{ form.instance.author }}</td>
<td>{{ form.instance.subject }}</td>
<td>
<button type="button"
Expand Down

0 comments on commit 2ede70e

Please sign in to comment.