Skip to content

Commit 2899c2a

Browse files
committed
Added listing of author names, with links to the individual profile pages, to Draft and RFC status pages. Related to issue ietf-tools#3093.
- Legacy-Id: 18549
1 parent 4128a76 commit 2899c2a

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

ietf/templates/doc/document_draft.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,19 @@
6767
</td>
6868
</tr>
6969

70+
<tr>
71+
<th></th>
72+
<th>Author{{doc.authors|pluralize}}</th>
73+
<td class="edit"></td>
74+
<td>
75+
{% for author in doc.authors %}
76+
<a href="{% url 'ietf.person.views.profile' email_or_name=author.email %}">{{ author.plain_name }}</a>
77+
{% if not forloop.last %}, {% endif %}
78+
{% endfor %}
79+
</td>
80+
</tr>
81+
82+
7083
<tr>
7184
<th></th>
7285
<th>Last updated</th>

0 commit comments

Comments
 (0)