diff options
author | friendica <info@friendica.com> | 2014-05-04 20:30:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-04 20:30:52 -0700 |
commit | 806f1f0fa134cc0168c9f86aaf10b8357fc19905 (patch) | |
tree | 86b38054156890f4139eaf1c3d53576a10542e2f /view/tpl/chat.tpl | |
parent | 3ae67c517ed8791332fb1ace2a0908209a6d0e0d (diff) | |
download | volse-hubzilla-806f1f0fa134cc0168c9f86aaf10b8357fc19905.tar.gz volse-hubzilla-806f1f0fa134cc0168c9f86aaf10b8357fc19905.tar.bz2 volse-hubzilla-806f1f0fa134cc0168c9f86aaf10b8357fc19905.zip |
UI for deleting chatrooms
Diffstat (limited to 'view/tpl/chat.tpl')
-rw-r--r-- | view/tpl/chat.tpl | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/view/tpl/chat.tpl b/view/tpl/chat.tpl index acb7e5bef..9f95d2999 100644 --- a/view/tpl/chat.tpl +++ b/view/tpl/chat.tpl @@ -5,8 +5,19 @@ <div id="chatLineHolder"></div> </div> - <div id="chatUsers"></div> - + <div id="chatSide"> + {{if $is_owner}} + <div id="chatDrop"> + <form id="chat-destroy" method="post" action="chat"> + <input type="hidden" name="room_name" value="{{$room_name}}" /> + <input type="hidden" name="action" value="drop" /> + <input type="submit" name="submit" value="{{$drop}}" onclick="return confirmDelete();"/> + </form> + </div><br /> + {{/if}} + + <div id="chatUsers"></div><br /> + </div> <div class="clear"></div> <div id="chatBottomBar"> <div class="tip"></div> |