diff --git a/chat/indico_chat/templates/event_page.html b/chat/indico_chat/templates/event_page.html index 50f3c5d..d198adf 100644 --- a/chat/indico_chat/templates/event_page.html +++ b/chat/indico_chat/templates/event_page.html @@ -1,7 +1,7 @@ {% extends 'events/display/conference/base.html' %} {% block title %} - {% trans %}Chat Rooms{% endtrans %} + {{- page_title -}} {% endblock %} {% block content %} diff --git a/chat/setup.py b/chat/setup.py index 524e1a3..7c4bdc4 100644 --- a/chat/setup.py +++ b/chat/setup.py @@ -21,7 +21,7 @@ from setuptools import find_packages, setup setup( name='indico-plugin-chat', - version='1.0', + version='2.0.dev0', description='XMPP chat integration for Indico', url='https://github.com/indico/indico-plugins', license='https://www.gnu.org/licenses/gpl-3.0.txt', @@ -31,7 +31,7 @@ setup( zip_safe=False, include_package_data=True, install_requires=[ - 'indico>=2.0', + 'indico>=2.1.dev0', 'sleekxmpp' ], classifiers=[