funchat/modules/chat/templates/default/editlog.tpl

32 lines
1.3 KiB
Smarty
Raw Normal View History

2025-06-02 10:01:12 +02:00
<div id="maincol_top_invisible">
</div>
<div class="maincol_review_header">
<h2><span>Edit Log</span></h2><br />
</div>
<div class="maincol_box_empty">
<div class="content_page">
<span style="color:red; font-weight:bold;">{$emsg}</span>
<form name="form" action="{$path}index.php?task=chat&amp;sub=editlog&amp;id={$id}" method="post">
<input type="checkbox" {$checked} onchange="public({$id})" name="share" /> Make log public?
<div id="publ">
{$pupl}
</div>
</form>
<label for="typ" class="left">Users you share this log with:</label><br />
<form name="form" action="/private.html" method="post">
<div id="users">
{foreach from=$share item=s}
<div id="id_{$s.uid}" class="useritem"><a onclick="return deleteItem('{$s.uid}');" href="index.php?task=chat&amp;sub=deluser&amp;id={$s.uid}"><img style="border:none; float:right;" src="/themes/ponytopia/images/icons/cross.png" /></a>{$s.username}</div>
{/foreach}
</div><br />
Add user: <input name="shareusers" id="userlist" size="30" /><input class="button" align="right" onclick="adduser()" type="button" value="Add" /><br /><br />
<input type="hidden" name="send" value="1" />
<input type="hidden" name="id" value="{$id}" />
<input class="button" align="right" type="submit" value="Back" />
</form>
</div>
</div>
</div>
</div>