mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-08 09:55:05 +00:00
14 lines
422 B
HTML
14 lines
422 B
HTML
{% if user.is_authenticated %}
|
|
<div id="chat-area">
|
|
<span id="status">Connecting...</span>
|
|
<input type="text" id="input" disabled="disabled"/>
|
|
</div>
|
|
<table id="chat-messages" class="table table-striped table-condensed table-hover">
|
|
<tbody id="chat-messages-body">
|
|
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<h3>Please <a href="/accounts/login/">login</a> to chat..</h3>
|
|
{% endif %}
|