Update message_recipient.tpl

This commit is contained in:
KulikAlex 2022-11-12 19:04:02 +03:00 committed by GitHub
parent f8c3083f35
commit 03cfb69a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1,4 +1,5 @@
<select name="recipient" class="form-control input-lg" id="recipient" required>
<option></option>
{{foreach $contacts as $contact}}
<option value="{{$contact.id}}"{{if $contact.id == $selected}} selected{{/if}}>{{$contact.name}}</option>
{{/foreach}}