Skip to content

Commit 6cd7612

Browse files
committed
If there's no person, output a "missing info" line instead of a blank
line. Makes explicit the problem 1 in ticket adamlaska#232 instead of implying that we've supplied all the information. - Legacy-Id: 924
1 parent 9f0f77c commit 6cd7612

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ietf/templates/idindex/internetdraft_detail.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ <h2>{{ object.filename }}-{{ object.revision_display }}</h2>
4141
{% if author.email %}
4242
<a href="mailto:{{ author.email }}">{{ author.person }}</a>
4343
{% else %}
44+
{% if author.person %}
4445
{{ author.person }}
46+
{% else %}
47+
Missing author info #{{ author.person_id }}
48+
{% endif %}
4549
{% endif %}
4650
<br>
4751
{% endfor %}

0 commit comments

Comments
 (0)