2014-12-12 22:15:58 +00:00
|
|
|
{literal}
|
|
|
|
<div id="userInviteDialogContainer">
|
|
|
|
<fieldset>
|
|
|
|
<legend>{lang}chat.user.search{/lang}</legend>
|
2014-12-09 22:57:25 +00:00
|
|
|
|
2014-12-12 22:15:58 +00:00
|
|
|
<dl class="marginTop">
|
|
|
|
<dt><label for="username">{lang}wcf.user.username{/lang}</label></dt>
|
|
|
|
<dd>
|
|
|
|
<span>
|
|
|
|
<input autocomplete="off" id="userInviteDialogUsernameInput" name="username" class="medium" value="" type="text" />
|
|
|
|
</span>
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2015-03-21 20:46:29 +00:00
|
|
|
<div id="userInviteDialogUserList"></div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>{lang}wcf.user.access.following{/lang}</legend>
|
2014-12-09 22:57:25 +00:00
|
|
|
|
2015-03-21 20:46:29 +00:00
|
|
|
{if $users.length === 0}
|
|
|
|
<p class="info">{lang}chat.global.invite.noFollowing{/lang}</p>
|
|
|
|
{else}
|
|
|
|
<div id="userInviteDialogFollowingList">
|
|
|
|
{foreach from=$users item="user"}
|
|
|
|
<dl>
|
|
|
|
<dt></dt>
|
|
|
|
<dd><label><input type="checkbox" id="userInviteDialogUserID-{$user.userID}" value="{$user.userID}" /> {$user.username}</label></dd>
|
|
|
|
</dl>
|
|
|
|
{/foreach}
|
|
|
|
</div>
|
|
|
|
{/if}
|
2014-12-12 22:15:58 +00:00
|
|
|
</fieldset>
|
2015-03-21 20:46:29 +00:00
|
|
|
|
|
|
|
<div class="formSubmit">
|
|
|
|
<input id="userInviteDialogFormSubmit" type="submit" value="{lang}wcf.global.button.submit{/lang}" />
|
|
|
|
</div>
|
2014-12-12 22:15:58 +00:00
|
|
|
</div>
|
2015-03-21 20:46:29 +00:00
|
|
|
{/literal}
|