Merged in [10429] from rjsparks@nostrum.com:
Display the To and (if it exists) Cc correctly on the publication request form. Fixes #1819.
- Legacy-Id: 10442
Note: SVN reference [10429] has been migrated to Git commit e1469522dd
This commit is contained in:
commit
0b1ca354fa
|
@ -41,9 +41,16 @@ href="https://www.rfc-editor.org/indsubs.html">guidelines</a>.
|
|||
|
||||
<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 %}
|
||||
|
|
Loading…
Reference in a new issue