Skip to content

Commit

Permalink
Display the To and (if it exists) Cc correctly on the publication req…
Browse files Browse the repository at this point in the history
…uest form. Fixes #1819. Commit ready for merge.

 - Legacy-Id: 10429
  • Loading branch information
rjsparks committed Nov 5, 2015
1 parent 7e39db8 commit e146952
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ietf/templates/doc/draft/request_publication.html
Expand Up @@ -41,9 +41,16 @@ <h1>Request publication<br><small>{{ doc }}</small></h1>

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

{% if message.cc %}
<div class="form-group">
<label>Cc</label>
<input class="form-control" type="text" placeholder="{{ message.cc|join:', ' }}" disabled>
</div>
{% endif %}

{% bootstrap_form form %}

{% buttons %}
Expand Down

0 comments on commit e146952

Please sign in to comment.