Errors:
11 |{{error}}
12 |├── etherpadlite ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── generate_etherpad_settings.py ├── static │ └── etherpad-lite │ │ ├── img │ │ ├── add.png │ │ └── del.png │ │ └── css │ │ └── style.css ├── templates │ └── etherpad-lite │ │ ├── logout.html │ │ ├── confirm.html │ │ ├── groupCreate.html │ │ ├── padCreate.html │ │ ├── profile.html │ │ ├── login.html │ │ ├── pad.html │ │ └── base.html ├── forms.py ├── admin.py ├── config.py ├── urls.py ├── locale │ └── fr │ │ └── LC_MESSAGES │ │ └── django.po ├── tests.py ├── models.py └── views.py ├── MANIFEST.in ├── .gitignore ├── setup.py └── README.md /etherpadlite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etherpadlite/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etherpadlite/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include etherpadlite/templates * 2 | recursive-include etherpadlite/static * -------------------------------------------------------------------------------- /etherpadlite/static/etherpad-lite/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leylaso/django-etherpad-lite/HEAD/etherpadlite/static/etherpad-lite/img/add.png -------------------------------------------------------------------------------- /etherpadlite/static/etherpad-lite/img/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leylaso/django-etherpad-lite/HEAD/etherpadlite/static/etherpad-lite/img/del.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore any compiled files 2 | *.pyc 3 | # Don't track swp files created by vim 4 | *.swp 5 | # Ignore compiled translation files 6 | *.mo 7 | # Ignore build directories and artefacts 8 | /build/ 9 | /dist/ 10 | /*.egg-info -------------------------------------------------------------------------------- /etherpadlite/templates/etherpad-lite/logout.html: -------------------------------------------------------------------------------- 1 | {% extends "etherpad-lite/base.html" %} 2 | {% load url from future %} 3 | {% load i18n %} 4 | 5 | {% block title %}{% trans "Logout" %}{% endblock %} 6 | 7 | {% block content %} 8 |
{% trans "Your username and password didn't match. Please try again." %}
11 | {% endif %} 12 | 13 | 29 | {% endblock %} 30 | -------------------------------------------------------------------------------- /etherpadlite/templates/etherpad-lite/pad.html: -------------------------------------------------------------------------------- 1 | {% extends "etherpad-lite/base.html" %} 2 | {% load url from future %} 3 | 4 | {% block title %}{{pad.name}}{% endblock %} 5 | 6 | {% block wrapper %} 7 | {% if error %} 8 |{{error}}
12 |