├── .gitignore ├── bbb_django ├── __init__.py ├── bbb │ ├── __init__.py │ ├── models.py │ ├── static │ │ ├── logo.png │ │ └── reset.css │ ├── templates │ │ ├── base.html │ │ ├── begin.html │ │ ├── create.html │ │ ├── home.html │ │ ├── join.html │ │ ├── login.html │ │ └── meetings.html │ ├── tests.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ └── core.py ├── manage.py ├── settings.py └── urls.py ├── readme.rst ├── requirements.txt └── screenshots ├── screenshot-create.png ├── screenshot-home.png ├── screenshot-join.png ├── screenshot-meetings-detail.png └── screenshot-meetings.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/.gitignore -------------------------------------------------------------------------------- /bbb_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bbb_django/bbb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bbb_django/bbb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/models.py -------------------------------------------------------------------------------- /bbb_django/bbb/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/static/logo.png -------------------------------------------------------------------------------- /bbb_django/bbb/static/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/static/reset.css -------------------------------------------------------------------------------- /bbb_django/bbb/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/base.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/begin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/begin.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/create.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/home.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/join.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/login.html -------------------------------------------------------------------------------- /bbb_django/bbb/templates/meetings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/templates/meetings.html -------------------------------------------------------------------------------- /bbb_django/bbb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/tests.py -------------------------------------------------------------------------------- /bbb_django/bbb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/urls.py -------------------------------------------------------------------------------- /bbb_django/bbb/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bbb_django/bbb/views/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/bbb/views/core.py -------------------------------------------------------------------------------- /bbb_django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/manage.py -------------------------------------------------------------------------------- /bbb_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/settings.py -------------------------------------------------------------------------------- /bbb_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/bbb_django/urls.py -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/readme.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django >= 1.0 2 | -------------------------------------------------------------------------------- /screenshots/screenshot-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/screenshots/screenshot-create.png -------------------------------------------------------------------------------- /screenshots/screenshot-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/screenshots/screenshot-home.png -------------------------------------------------------------------------------- /screenshots/screenshot-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/screenshots/screenshot-join.png -------------------------------------------------------------------------------- /screenshots/screenshot-meetings-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/screenshots/screenshot-meetings-detail.png -------------------------------------------------------------------------------- /screenshots/screenshot-meetings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schallis/django-bigbluebutton/HEAD/screenshots/screenshot-meetings.png --------------------------------------------------------------------------------