├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── okrand.iml └── vcs.xml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── locale └── tlh │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── okrand ├── __init__.py ├── _vendored │ └── polib.py ├── apps.py ├── iommi_admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── i18n.py └── views.py ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── apps.py ├── helpers.py ├── models.py ├── settings.py ├── test_base.py ├── test_read_config_no_section.cfg ├── test_views.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/okrand.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/okrand.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/README.rst -------------------------------------------------------------------------------- /locale/tlh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/locale/tlh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/manage.py -------------------------------------------------------------------------------- /okrand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/__init__.py -------------------------------------------------------------------------------- /okrand/_vendored/polib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/_vendored/polib.py -------------------------------------------------------------------------------- /okrand/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/apps.py -------------------------------------------------------------------------------- /okrand/iommi_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/iommi_admin.py -------------------------------------------------------------------------------- /okrand/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /okrand/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /okrand/management/commands/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/management/commands/i18n.py -------------------------------------------------------------------------------- /okrand/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/okrand/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=3.2 2 | gitignorefile 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_read_config_no_section.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxed/okrand/HEAD/tests/urls.py --------------------------------------------------------------------------------