Skip to content

Commit 0b1ca35

Browse files
committed
Merged in [10429] from rjsparks@nostrum.com:
Display the To and (if it exists) Cc correctly on the publication request form. Fixes ietf-tools#1819. - Legacy-Id: 10442 Note: SVN reference [10429] has been migrated to Git commit e146952
2 parents 84860d8 + e146952 commit 0b1ca35

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

ietf/templates/doc/draft/request_publication.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,16 @@ <h1>Request publication<br><small>{{ doc }}</small></h1>
4141

4242
<div class="form-group">
4343
<label>To</label>
44-
<input class="form-control" type="text" placeholder="{{ message.to }}" disabled>
44+
<input class="form-control" type="text" placeholder="{{ message.to|join:', ' }}" disabled>
4545
</div>
4646

47+
{% if message.cc %}
48+
<div class="form-group">
49+
<label>Cc</label>
50+
<input class="form-control" type="text" placeholder="{{ message.cc|join:', ' }}" disabled>
51+
</div>
52+
{% endif %}
53+
4754
{% bootstrap_form form %}
4855

4956
{% buttons %}

0 commit comments

Comments
 (0)