/templates/simple.html
http://django-jchat.googlecode.com/ · HTML · 33 lines · 29 code · 3 blank · 1 comment · 0 complexity · 3b21a17d3e9b22b256b9c553cd9c244a MD5 · raw file
- {% extends 'base.html' %}
-
- {% block content %}
- <div id="instructions">
- <p>Simple chat example here. Please refer to the documentation at my blog, the wiki and/or read the source code for the project's main views.py file, under the simple() function, it's all there... and here watch it in action:</p>
- </div>
-
- <div id="chat"></div>
- <!-- You should try to include this at another place at your convenience :D -->
- <script type="text/javascript" src="/static/js/jchat.js"></script>
- <script type="text/javascript">
- /* chat_id is passed form the view, the init_chat function then does all the magic */
- $(window).ready(function(){
- init_chat({{chat_id}}, "chat");
- })
- </script>
- <div id="explanation">
- <strong>Emoticon Reference</strong> (try these)<br />
- <pre>
- >:D
- :D
- =D
- :)
- :O
- :P
- :(
- :3
- ;)
- (ball)
- </pre>
- </div>
-
- {% endblock %}