├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── popolo ├── __init__.py ├── admin.py ├── apps.py ├── behaviors │ ├── __init__.py │ ├── admin.py │ ├── models.py │ └── tests.py ├── exceptions.py ├── locale │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20210407_1722.py │ ├── 0003_auto_20210407_1910.py │ └── __init__.py ├── mixins.py ├── models.py ├── querysets.py ├── signals.py ├── templates │ ├── area_detail.html │ ├── electoral_event_detail.html │ ├── membership_detail.html │ ├── organization_detail.html │ ├── person_detail.html │ └── post_detail.html ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_models.py │ └── test_utils.py ├── urls.py ├── utils.py ├── validators.py └── views.py ├── pyproject.toml ├── schema_parser.py ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Guglielmo Celata at Openpolis 2 | Juha Yrjölä at Code4Europe 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/README.md -------------------------------------------------------------------------------- /popolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/__init__.py -------------------------------------------------------------------------------- /popolo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/admin.py -------------------------------------------------------------------------------- /popolo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/apps.py -------------------------------------------------------------------------------- /popolo/behaviors/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "guglielmo" 2 | -------------------------------------------------------------------------------- /popolo/behaviors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/behaviors/admin.py -------------------------------------------------------------------------------- /popolo/behaviors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/behaviors/models.py -------------------------------------------------------------------------------- /popolo/behaviors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/behaviors/tests.py -------------------------------------------------------------------------------- /popolo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/exceptions.py -------------------------------------------------------------------------------- /popolo/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /popolo/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /popolo/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/managers.py -------------------------------------------------------------------------------- /popolo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/migrations/0001_initial.py -------------------------------------------------------------------------------- /popolo/migrations/0002_auto_20210407_1722.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/migrations/0002_auto_20210407_1722.py -------------------------------------------------------------------------------- /popolo/migrations/0003_auto_20210407_1910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/migrations/0003_auto_20210407_1910.py -------------------------------------------------------------------------------- /popolo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popolo/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/mixins.py -------------------------------------------------------------------------------- /popolo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/models.py -------------------------------------------------------------------------------- /popolo/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/querysets.py -------------------------------------------------------------------------------- /popolo/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/signals.py -------------------------------------------------------------------------------- /popolo/templates/area_detail.html: -------------------------------------------------------------------------------- 1 | Area -------------------------------------------------------------------------------- /popolo/templates/electoral_event_detail.html: -------------------------------------------------------------------------------- 1 | Electoral Event -------------------------------------------------------------------------------- /popolo/templates/membership_detail.html: -------------------------------------------------------------------------------- 1 | Membership -------------------------------------------------------------------------------- /popolo/templates/organization_detail.html: -------------------------------------------------------------------------------- 1 | Organizzazione -------------------------------------------------------------------------------- /popolo/templates/person_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/templates/person_detail.html -------------------------------------------------------------------------------- /popolo/templates/post_detail.html: -------------------------------------------------------------------------------- 1 | Post -------------------------------------------------------------------------------- /popolo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popolo/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/tests/factories.py -------------------------------------------------------------------------------- /popolo/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/tests/test_models.py -------------------------------------------------------------------------------- /popolo/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/tests/test_utils.py -------------------------------------------------------------------------------- /popolo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/urls.py -------------------------------------------------------------------------------- /popolo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/utils.py -------------------------------------------------------------------------------- /popolo/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/validators.py -------------------------------------------------------------------------------- /popolo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/popolo/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schema_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/schema_parser.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openpolis/django-popolo/HEAD/tox.ini --------------------------------------------------------------------------------