├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── install.rst ├── make.bat ├── overview.rst └── spelling_wordlist.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── src └── soapbox │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── fixtures │ └── soapboxtest.json │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_is_global_default.py │ └── __init__.py │ ├── models.py │ └── templatetags │ ├── __init__.py │ └── soapbox.py ├── tests ├── __init__.py ├── templates │ └── soapboxtest │ │ ├── test_bad_variable.html │ │ ├── test_context_processor.html │ │ ├── test_fail_syntax.html │ │ └── test_success.html ├── test_messages.py ├── test_tags.py └── urls.py └── tox.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/setup.py -------------------------------------------------------------------------------- /src/soapbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/soapbox/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/admin.py -------------------------------------------------------------------------------- /src/soapbox/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/context_processors.py -------------------------------------------------------------------------------- /src/soapbox/fixtures/soapboxtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/fixtures/soapboxtest.json -------------------------------------------------------------------------------- /src/soapbox/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/soapbox/migrations/0002_is_global_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/migrations/0002_is_global_default.py -------------------------------------------------------------------------------- /src/soapbox/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/soapbox/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/models.py -------------------------------------------------------------------------------- /src/soapbox/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/soapbox/templatetags/soapbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/src/soapbox/templatetags/soapbox.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/soapboxtest/test_bad_variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/templates/soapboxtest/test_bad_variable.html -------------------------------------------------------------------------------- /tests/templates/soapboxtest/test_context_processor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/templates/soapboxtest/test_context_processor.html -------------------------------------------------------------------------------- /tests/templates/soapboxtest/test_fail_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/templates/soapboxtest/test_fail_syntax.html -------------------------------------------------------------------------------- /tests/templates/soapboxtest/test_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/templates/soapboxtest/test_success.html -------------------------------------------------------------------------------- /tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/test_messages.py -------------------------------------------------------------------------------- /tests/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/test_tags.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubernostrum/django-soapbox/HEAD/tox.ini --------------------------------------------------------------------------------