This reusable Django app will be integrate a chat widget from Chatovod.Ru
Documentation available at Read the Docs.
- Package:
$ git clone https://github.com/gotlium/django-chatovod.git
$ cd django-chatovod && sudo python setup.py install
OR
$ pip install django-chatovod
- Add the
chatovod
application toINSTALLED_APPS
in your settings file (usuallysettings.py
) - Configure widget on your settings. By default:
CHAT_WIDTH = '900'
CHAT_HEIGHT = '500'
CHAT_DOMAIN = 'demo.chatovod.ru'
CHAT_API_KEY = '07a128c26a0e626c6afcc5ecd8ed800c'
- Use in your template:
{% load chatovod %}
<!DOCTYPE html>
<html>
<head>
<title>Chatovod example</title>
</head>
<body>
{% chatovod %}
</body>
</html>
- Python: 2.6, 2.7
- Django: 1.3.x, 1.4.x, 1.5.x, 1.6