diff --git a/_modules/apis_core/utils/DateParser.html b/_modules/apis_core/utils/DateParser.html
index e34299db0..0e85f89f5 100644
--- a/_modules/apis_core/utils/DateParser.html
+++ b/_modules/apis_core/utils/DateParser.html
@@ -359,88 +359,6 @@
<
from django.test import TestCase
-
from .DateParser import get_date_help_text_from_dates , parse_date
+
from .DateParser import parse_date
help_text_default = "Dates are interpreted by defined rules. If this fails, an iso-date can be explicitly set with '<YYYY-MM-DD>'."
@@ -102,26 +102,23 @@
Source code for apis_core.utils.test_DateParser <
# a dict of dates with the written date as key
-
# followed by a tuple of (single, start, end, help_text)
+
# followed by a tuple of (single, start, end)
dates = {
"vor dem 23.10.1449 <1449-10-23>" : (
fi ( "1449-10-23" ),
None ,
None ,
-
"Date interpreted as 1449-10-23" ,
),
"1459-12" : (
fi ( "1459-12-16" ),
fi ( "1459-12-01" ),
fi ( "1459-12-31" ),
-
"Date interpreted as 1459-12-1 until 1459-12-31" ,
),
-
"1460-03-30" : ( fi ( "1460-03-30" ), None , None , "Date interpreted as 1460-3-30" ),
+
"1460-03-30" : ( fi ( "1460-03-30" ), None , None ),
"" : (
None ,
None ,
None ,
-
"<b>Date could not be interpreted</b><br>" + help_text_default ,
),
}
@@ -132,19 +129,11 @@
Source code for apis_core.utils.test_DateParser <
[docs]
def test_dates ( self ):
-
for datestring , ( expsingle , expstart , expend , help_text ) in dates . items ():
+
for datestring , ( expsingle , expstart , expend ) in dates . items ():
single , start , end = parse_date ( datestring )
self . assertEqual ( expsingle , single )
self . assertEqual ( expstart , start )
self . assertEqual ( expend , end )
-
-
-
-
[docs]
-
def test_help_text ( self ):
-
for datestring , ( single , start , end , exp_help_text ) in dates . items ():
-
help_text = get_date_help_text_from_dates ( single , start , end , datestring )
-
self . assertEqual ( exp_help_text , help_text )
diff --git a/genindex.html b/genindex.html
index b4b26a900..02f7f7690 100644
--- a/genindex.html
+++ b/genindex.html
@@ -1691,10 +1691,6 @@
G
get_data() (apis_core.generic.importers.GenericModelImporter method)
get_data_for_m2m_field() (apis_core.history.serializers.ModelChangeSerializer method)
-
-
get_date_help_text_default() (in module apis_core.utils.DateParser)
-
-
get_date_help_text_from_dates() (in module apis_core.utils.DateParser)
get_definition_and_attributes_from_uri() (in module apis_core.utils.rdf)
@@ -1720,10 +1716,10 @@
G
get_entity_list_filter() (apis_core.apis_entities.models.AbstractEntity class method)
-
-
+
get_field_data() (apis_core.history.serializers.ModelChangeSerializer method)
get_field_data_new() (apis_core.history.serializers.ModelChangeSerializer method)
@@ -3012,8 +3008,6 @@ T
test_get_definition_from_dict_place_from_dnb() (apis_core.utils.test_rdf.RdfTest method)
test_get_definition_from_dict_place_from_geonames() (apis_core.utils.test_rdf.RdfTest method)
-
- test_help_text() (apis_core.utils.test_DateParser.DateParserTest method)
test_lookup() (apis_core.utils.test_helpers.FilterMethodstest method)
diff --git a/htmlcov/class_index.html b/htmlcov/class_index.html
index 5aa0f7c41..fa4467250 100644
--- a/htmlcov/class_index.html
+++ b/htmlcov/class_index.html
@@ -55,7 +55,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -2995,10 +2995,10 @@
apis_core/utils/DateParser.py
(no class)
- 151
- 59
+ 133
+ 56
0
- 61%
+ 58%
apis_core/utils/__init__.py
@@ -3129,20 +3129,20 @@
67%
- apis_core/utils/test_DateParser.py
- DateParserTest
- 8
+ apis_core/utils/test_DateParser.py
+ DateParserTest
+ 5
0
0
- 100%
+ 100%
apis_core/utils/test_DateParser.py
(no class)
- 10
+ 9
0
0
- 100%
+ 100%
apis_core/utils/test_helpers.py
@@ -3509,10 +3509,10 @@
Total
- 4050
- 1981
+ 4028
+ 1978
0
- 51%
+ 51%
@@ -3524,7 +3524,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/function_index.html b/htmlcov/function_index.html
index 90e44f23f..3d65faf87 100644
--- a/htmlcov/function_index.html
+++ b/htmlcov/function_index.html
@@ -55,7 +55,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -4104,29 +4104,13 @@
0
60%
-
- apis_core/utils/DateParser.py
- get_date_help_text_from_dates
- 15
- 3
- 0
- 80%
-
-
- apis_core/utils/DateParser.py
- get_date_help_text_default
- 1
- 0
- 0
- 100%
-
apis_core/utils/DateParser.py
(no function)
- 6
+ 4
0
0
- 100%
+ 100%
apis_core/utils/__init__.py
@@ -4457,28 +4441,20 @@
100%
- apis_core/utils/test_DateParser.py
- DateParserTest.test_dates
+ apis_core/utils/test_DateParser.py
+ DateParserTest.test_dates
5
0
0
100%
-
- apis_core/utils/test_DateParser.py
- DateParserTest.test_help_text
- 3
- 0
- 0
- 100%
-
apis_core/utils/test_DateParser.py
(no function)
- 9
+ 8
0
0
- 100%
+ 100%
apis_core/utils/test_helpers.py
@@ -4773,10 +4749,10 @@
Total
- 4050
- 1981
+ 4028
+ 1978
0
- 51%
+ 51%
@@ -4788,7 +4764,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/index.html b/htmlcov/index.html
index 433c3fe30..fccbf1d84 100644
--- a/htmlcov/index.html
+++ b/htmlcov/index.html
@@ -54,7 +54,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -1080,10 +1080,10 @@
apis_core/utils/DateParser.py
- 151
- 59
+ 133
+ 56
0
- 61%
+ 58%
apis_core/utils/__init__.py
@@ -1150,10 +1150,10 @@
apis_core/utils/test_DateParser.py
- 18
+ 14
0
0
- 100%
+ 100%
apis_core/utils/test_helpers.py
@@ -1292,10 +1292,10 @@
Total
- 4050
- 1981
+ 4028
+ 1978
0
- 51%
+ 51%
@@ -1307,7 +1307,7 @@
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/manage_py.html b/htmlcov/manage_py.html
index c62437760..c2c9525d1 100644
--- a/htmlcov/manage_py.html
+++ b/htmlcov/manage_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -112,7 +112,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/status.json b/htmlcov/status.json
index 28b2874f6..160977b35 100644
--- a/htmlcov/status.json
+++ b/htmlcov/status.json
@@ -1 +1 @@
-{"note":"This file is an internal implementation detail to speed up HTML report generation. Its format can change at any time. You might be looking for the JSON report: https://coverage.rtfd.io/cmd.html#cmd-json","format":5,"version":"7.6.8","globals":"feece107ab194726947cd448c6394d06","files":{"z_2c9c277fca33aa93___init___py":{"hash":"8b764c6a278e05826e413e010d2ba52c","index":{"url":"z_2c9c277fca33aa93___init___py.html","file":"apis_core/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":1,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_572d048ccdded887___init___py.html","file":"apis_core/apis_entities/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_abc_py":{"hash":"c712ff246d658e4c19e71166124e8794","index":{"url":"z_572d048ccdded887_abc_py.html","file":"apis_core/apis_entities/abc.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_api_views_py":{"hash":"dfc5cefa6ae193f7694d02075c45eaab","index":{"url":"z_572d048ccdded887_api_views_py.html","file":"apis_core/apis_entities/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":26,"n_excluded":0,"n_missing":11,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_apps_py":{"hash":"b31066542acd671f9a82b85b42ab3a08","index":{"url":"z_572d048ccdded887_apps_py.html","file":"apis_core/apis_entities/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_autocomplete3_py":{"hash":"10caed53c5bec497b77975138e478a74","index":{"url":"z_572d048ccdded887_autocomplete3_py.html","file":"apis_core/apis_entities/autocomplete3.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_fields_py":{"hash":"b02bac53136fe9fe8c4f75002f147985","index":{"url":"z_572d048ccdded887_fields_py.html","file":"apis_core/apis_entities/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":41,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_filtersets_py":{"hash":"26f7322586363f6dfaeef04e953dcdcb","index":{"url":"z_572d048ccdded887_filtersets_py.html","file":"apis_core/apis_entities/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":42,"n_excluded":0,"n_missing":42,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0001_initial_py":{"hash":"ff63a715db2f4fdc79bc5e92b37efac8","index":{"url":"z_754a3a2495383e43_0001_initial_py.html","file":"apis_core/apis_entities/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0002_remove_tempentityclass_text_py":{"hash":"18075c4dfae6a7ff7992739cda2a8d27","index":{"url":"z_754a3a2495383e43_0002_remove_tempentityclass_text_py.html","file":"apis_core/apis_entities/migrations/0002_remove_tempentityclass_text.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0003_remove_tempentityclass_source_py":{"hash":"fc492e7a67efe14c30d76dc6b8b2cc47","index":{"url":"z_754a3a2495383e43_0003_remove_tempentityclass_source_py.html","file":"apis_core/apis_entities/migrations/0003_remove_tempentityclass_source.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0004_delete_tempentityclass_py":{"hash":"02a616cdc2c9c4bfbb67e3d76451fc93","index":{"url":"z_754a3a2495383e43_0004_delete_tempentityclass_py.html","file":"apis_core/apis_entities/migrations/0004_delete_tempentityclass.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_754a3a2495383e43___init___py.html","file":"apis_core/apis_entities/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_models_py":{"hash":"cb7d485758d95ea5dc3381b994d96498","index":{"url":"z_572d048ccdded887_models_py.html","file":"apis_core/apis_entities/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":61,"n_excluded":0,"n_missing":25,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_serializers_py":{"hash":"59b09a6d1f39b2752bc09581926f1ae9","index":{"url":"z_572d048ccdded887_serializers_py.html","file":"apis_core/apis_entities/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_tables_py":{"hash":"16a4accee99919f91ce3ce0fc4834021","index":{"url":"z_572d048ccdded887_tables_py.html","file":"apis_core/apis_entities/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d10b1e8419087c99_apis_entities_py":{"hash":"52a02dbb7033a31147a217c7dd75d209","index":{"url":"z_d10b1e8419087c99_apis_entities_py.html","file":"apis_core/apis_entities/templatetags/apis_entities.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_urls_py":{"hash":"120a2c6886f8e9a5dfb6faed0175a14c","index":{"url":"z_572d048ccdded887_urls_py.html","file":"apis_core/apis_entities/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_utils_py":{"hash":"f21df207e2eb654243d81e970e194e6e","index":{"url":"z_572d048ccdded887_utils_py.html","file":"apis_core/apis_entities/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_views_py":{"hash":"8c8be5a3e671a43f28d43a10026fabe6","index":{"url":"z_572d048ccdded887_views_py.html","file":"apis_core/apis_entities/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":31,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_49ff5da25a66209a___init___py.html","file":"apis_core/apis_metainfo/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_admin_py":{"hash":"4e541411e05ec8dba04048219f4dfa5f","index":{"url":"z_49ff5da25a66209a_admin_py.html","file":"apis_core/apis_metainfo/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_apps_py":{"hash":"d83de6ac89afec673383c5c297e11eef","index":{"url":"z_49ff5da25a66209a_apps_py.html","file":"apis_core/apis_metainfo/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_filtersets_py":{"hash":"97266420e65ed37760f63c9c6b90c5e0","index":{"url":"z_49ff5da25a66209a_filtersets_py.html","file":"apis_core/apis_metainfo/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_forms_py":{"hash":"c338444cc44944f76606bd138df16333","index":{"url":"z_49ff5da25a66209a_forms_py.html","file":"apis_core/apis_metainfo/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":7,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0001_initial_py":{"hash":"daaf7860aa19f4a7005ff95affc056ae","index":{"url":"z_ef4d16bc632aabbd_0001_initial_py.html","file":"apis_core/apis_metainfo/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0002_auto_20220201_1241_py":{"hash":"1d1170f5ba3d133d9743c257fe5a7364","index":{"url":"z_ef4d16bc632aabbd_0002_auto_20220201_1241_py.html","file":"apis_core/apis_metainfo/migrations/0002_auto_20220201_1241.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0003_auto_20220218_1530_py":{"hash":"88f0cd87c10b55577d001b76ed50856d","index":{"url":"z_ef4d16bc632aabbd_0003_auto_20220218_1530_py.html","file":"apis_core/apis_metainfo/migrations/0003_auto_20220218_1530.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0004_auto_20230310_0804_py":{"hash":"ce54e934b97196aa3bf5f6a72f8fd01c","index":{"url":"z_ef4d16bc632aabbd_0004_auto_20230310_0804_py.html","file":"apis_core/apis_metainfo/migrations/0004_auto_20230310_0804.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0005_delete_uricandidate_py":{"hash":"5b5d32a0aae8f358bd34cfd4e468351d","index":{"url":"z_ef4d16bc632aabbd_0005_delete_uricandidate_py.html","file":"apis_core/apis_metainfo/migrations/0005_delete_uricandidate.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0006_delete_text_py":{"hash":"b55f1ca1e43502df80db46b8c1756037","index":{"url":"z_ef4d16bc632aabbd_0006_delete_text_py.html","file":"apis_core/apis_metainfo/migrations/0006_delete_text.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0007_delete_source_py":{"hash":"084fbcb9d86b5c7d00f858815af945dc","index":{"url":"z_ef4d16bc632aabbd_0007_delete_source_py.html","file":"apis_core/apis_metainfo/migrations/0007_delete_source.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0008_alter_rootobject_self_contenttype_py":{"hash":"d7554164870c11c267087ab897c446fc","index":{"url":"z_ef4d16bc632aabbd_0008_alter_rootobject_self_contenttype_py.html","file":"apis_core/apis_metainfo/migrations/0008_alter_rootobject_self_contenttype.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0009_remove_collection_collection_type_py":{"hash":"36e01f75faa85d5564099dee32655e6f","index":{"url":"z_ef4d16bc632aabbd_0009_remove_collection_collection_type_py.html","file":"apis_core/apis_metainfo/migrations/0009_remove_collection_collection_type.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0010_rename_name_rootobject_deprecated_name_py":{"hash":"f453080f0a7afc16e0d267a66c3cbe34","index":{"url":"z_ef4d16bc632aabbd_0010_rename_name_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0010_rename_name_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0011_alter_rootobject_deprecated_name_py":{"hash":"1c50627ed00efca8863744175c5e19fe","index":{"url":"z_ef4d16bc632aabbd_0011_alter_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0011_alter_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0012_remove_rootobject_deprecated_name_py":{"hash":"8f7802b5a60d3ec850583b01d212f41a","index":{"url":"z_ef4d16bc632aabbd_0012_remove_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0012_remove_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0013_delete_collection_py":{"hash":"9734e9e2e30bbfcf8c109b3841e84ba0","index":{"url":"z_ef4d16bc632aabbd_0013_delete_collection_py.html","file":"apis_core/apis_metainfo/migrations/0013_delete_collection.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0014_remove_uri_domain_remove_uri_loaded_and_more_py":{"hash":"0dbd1d666f4d297c800d77b8ca1e96d3","index":{"url":"z_ef4d16bc632aabbd_0014_remove_uri_domain_remove_uri_loaded_and_more_py.html","file":"apis_core/apis_metainfo/migrations/0014_remove_uri_domain_remove_uri_loaded_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_ef4d16bc632aabbd___init___py.html","file":"apis_core/apis_metainfo/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_models_py":{"hash":"196a625eafad6c3577bc19c658acef31","index":{"url":"z_49ff5da25a66209a_models_py.html","file":"apis_core/apis_metainfo/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":59,"n_excluded":0,"n_missing":20,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_serializers_py":{"hash":"39bcb56717777eccbb048b5228e53a82","index":{"url":"z_49ff5da25a66209a_serializers_py.html","file":"apis_core/apis_metainfo/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_tables_py":{"hash":"a832a966312236a71886c7933c5e1f5f","index":{"url":"z_49ff5da25a66209a_tables_py.html","file":"apis_core/apis_metainfo/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":14,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_urls_py":{"hash":"b541d254e410e4ce5dc457b6e9624109","index":{"url":"z_49ff5da25a66209a_urls_py.html","file":"apis_core/apis_metainfo/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_viewsets_py":{"hash":"b90e08efeadddcb6fee115b69c76b1dc","index":{"url":"z_49ff5da25a66209a_viewsets_py.html","file":"apis_core/apis_metainfo/viewsets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":18,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_742a021fcfacff1d___init___py.html","file":"apis_core/apis_relations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_admin_py":{"hash":"ae8aae169bd34fd624b130ccc761bf52","index":{"url":"z_742a021fcfacff1d_admin_py.html","file":"apis_core/apis_relations/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_apps_py":{"hash":"74cc9ab68130b85956eec996a6513a43","index":{"url":"z_742a021fcfacff1d_apps_py.html","file":"apis_core/apis_relations/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_filters_py":{"hash":"172c35355daa50a783016e66886b332f","index":{"url":"z_742a021fcfacff1d_filters_py.html","file":"apis_core/apis_relations/filters.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":38,"n_excluded":0,"n_missing":38,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_filtersets_py":{"hash":"386122f50e30d017f34604c42696cedc","index":{"url":"z_742a021fcfacff1d_filtersets_py.html","file":"apis_core/apis_relations/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":37,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_forms_py":{"hash":"0f0d8cfc788387f199385c1abd264770","index":{"url":"z_742a021fcfacff1d_forms_py.html","file":"apis_core/apis_relations/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":83,"n_excluded":0,"n_missing":55,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0001_initial_py":{"hash":"70ff11a333782c19b47f26b28a3ca503","index":{"url":"z_5d8b244af5c2277b_0001_initial_py.html","file":"apis_core/apis_relations/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0002_property_property_class_uri_py":{"hash":"fafe07a1a62ca3c8e6ec0ed7c8596b2b","index":{"url":"z_5d8b244af5c2277b_0002_property_property_class_uri_py.html","file":"apis_core/apis_relations/migrations/0002_property_property_class_uri.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0003_auto_20230123_1715_py":{"hash":"b3c76da6b8ce945578c7c1f7cacebbab","index":{"url":"z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html","file":"apis_core/apis_relations/migrations/0003_auto_20230123_1715.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0004_auto_20230124_1201_py":{"hash":"1ba8fcfde8ba76b3d9ff6f4814041285","index":{"url":"z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html","file":"apis_core/apis_relations/migrations/0004_auto_20230124_1201.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py":{"hash":"663863457b0cc3b4d4b1fc761e45f648","index":{"url":"z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html","file":"apis_core/apis_relations/migrations/0005_alter_property_obj_class_alter_property_subj_class.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0006_versiontemptriple_py":{"hash":"d4aac064dd43ac411dee8381e50d8a8a","index":{"url":"z_5d8b244af5c2277b_0006_versiontemptriple_py.html","file":"apis_core/apis_relations/migrations/0006_versiontemptriple.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":9,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py":{"hash":"fe82e1983aa24c49f43690d62aaf9bb5","index":{"url":"z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html","file":"apis_core/apis_relations/migrations/0007_alter_versiontemptriple_options.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_5d8b244af5c2277b___init___py.html","file":"apis_core/apis_relations/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_models_py":{"hash":"76a0274e3797a062dcfd20786ca4ac85","index":{"url":"z_742a021fcfacff1d_models_py.html","file":"apis_core/apis_relations/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":206,"n_excluded":0,"n_missing":72,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_signals_py":{"hash":"130779b53b83544c9a39788cef2153bf","index":{"url":"z_742a021fcfacff1d_signals_py.html","file":"apis_core/apis_relations/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":24,"n_excluded":0,"n_missing":10,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_tables_py":{"hash":"e3e95a867091114597d82e82df7cc59b","index":{"url":"z_742a021fcfacff1d_tables_py.html","file":"apis_core/apis_relations/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":104,"n_excluded":0,"n_missing":47,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_bacc1c03c9be4470_apis_relations_py":{"hash":"94540984cc987b2b5405bf6b71bee993","index":{"url":"z_bacc1c03c9be4470_apis_relations_py.html","file":"apis_core/apis_relations/templatetags/apis_relations.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_urls_py":{"hash":"7b5a0bd00318e4aa7a7466252997d746","index":{"url":"z_742a021fcfacff1d_urls_py.html","file":"apis_core/apis_relations/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_utils_py":{"hash":"4946c18b65e74bf6d0518118076b740f","index":{"url":"z_742a021fcfacff1d_utils_py.html","file":"apis_core/apis_relations/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":35,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_views_py":{"hash":"08084711918659df479562b01cf0f49f","index":{"url":"z_742a021fcfacff1d_views_py.html","file":"apis_core/apis_relations/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":78,"n_excluded":0,"n_missing":62,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0001_initial_py":{"hash":"98b6d2c4b3f9d5cb1286a06a3f41b316","index":{"url":"z_e42e1fb98877cc0c_0001_initial_py.html","file":"apis_core/apis_vocabularies/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0002_remove_texttype_collections_and_more_py":{"hash":"21b9dd63e34603e0fd2df6283eaf6e26","index":{"url":"z_e42e1fb98877cc0c_0002_remove_texttype_collections_and_more_py.html","file":"apis_core/apis_vocabularies/migrations/0002_remove_texttype_collections_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0003_delete_vocabnames_delete_vocabsuri_py":{"hash":"467fb37690e0b828cc8c4f978ea47406","index":{"url":"z_e42e1fb98877cc0c_0003_delete_vocabnames_delete_vocabsuri_py.html","file":"apis_core/apis_vocabularies/migrations/0003_delete_vocabnames_delete_vocabsuri.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0004_delete_collectiontype_py":{"hash":"2d475e0b0dbfba701642d013f5fe1fbc","index":{"url":"z_e42e1fb98877cc0c_0004_delete_collectiontype_py.html","file":"apis_core/apis_vocabularies/migrations/0004_delete_collectiontype.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0005_delete_vocabsbaseclass_py":{"hash":"78a47bf6d62b544ab562a92291a7d650","index":{"url":"z_e42e1fb98877cc0c_0005_delete_vocabsbaseclass_py.html","file":"apis_core/apis_vocabularies/migrations/0005_delete_vocabsbaseclass.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_e42e1fb98877cc0c___init___py.html","file":"apis_core/apis_vocabularies/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_73d20026d8cfd537___init___py.html","file":"apis_core/collections/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_admin_py":{"hash":"5845cfa470e7623908106bbb0c18b4b0","index":{"url":"z_73d20026d8cfd537_admin_py.html","file":"apis_core/collections/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_apps_py":{"hash":"8b4c022eb701df4548328507b2684502","index":{"url":"z_73d20026d8cfd537_apps_py.html","file":"apis_core/collections/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0001_initial_py":{"hash":"6618311bdc7a049e75b4dc3207fbfa87","index":{"url":"z_782cd176b95f1058_0001_initial_py.html","file":"apis_core/collections/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0002_alter_skoscollection_options_py":{"hash":"b0b60366621f8b25e717a0b847a59636","index":{"url":"z_782cd176b95f1058_0002_alter_skoscollection_options_py.html","file":"apis_core/collections/migrations/0002_alter_skoscollection_options.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0003_skoscollection_unique_name_parent_and_more_py":{"hash":"79df930b0df0b99c17afbb2fefaf8a71","index":{"url":"z_782cd176b95f1058_0003_skoscollection_unique_name_parent_and_more_py.html","file":"apis_core/collections/migrations/0003_skoscollection_unique_name_parent_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_782cd176b95f1058___init___py.html","file":"apis_core/collections/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_models_py":{"hash":"4f7b5fee51a9e88efcedefc56c96ec06","index":{"url":"z_73d20026d8cfd537_models_py.html","file":"apis_core/collections/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":37,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_signals_py":{"hash":"2d6786b363a86513e58b940c30bd11cc","index":{"url":"z_73d20026d8cfd537_signals_py.html","file":"apis_core/collections/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":16,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_tables_py":{"hash":"331260664e1d367c370c5839a21c358d","index":{"url":"z_73d20026d8cfd537_tables_py.html","file":"apis_core/collections/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d4c4f42115e675b2___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_d4c4f42115e675b2___init___py.html","file":"apis_core/collections/templatetags/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d4c4f42115e675b2_collections_py":{"hash":"d9e57ca4e136070b88ac61939f2bbb7e","index":{"url":"z_d4c4f42115e675b2_collections_py.html","file":"apis_core/collections/templatetags/collections.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":50,"n_excluded":0,"n_missing":30,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_a87bbc0055e2906a___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_a87bbc0055e2906a___init___py.html","file":"apis_core/collections/tests/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_a87bbc0055e2906a_tests_py":{"hash":"52b2e0a52909e1ef78e14113aac98bfe","index":{"url":"z_a87bbc0055e2906a_tests_py.html","file":"apis_core/collections/tests/tests.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":34,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_urls_py":{"hash":"aca5397b28b0c059309032cc4a0fdb19","index":{"url":"z_73d20026d8cfd537_urls_py.html","file":"apis_core/collections/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_views_py":{"hash":"4ec998617d58fbdf5a83dff179bb650e","index":{"url":"z_73d20026d8cfd537_views_py.html","file":"apis_core/collections/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":57,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_mixins_py":{"hash":"e90b0bf68fd1a9a4b62152b359371567","index":{"url":"z_b98ef7dc8a4f2930_mixins_py.html","file":"apis_core/core/mixins.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":12,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_models_py":{"hash":"db1f627638bbd754b8e5b3eb69813075","index":{"url":"z_b98ef7dc8a4f2930_models_py.html","file":"apis_core/core/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":46,"n_excluded":0,"n_missing":32,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_210622b261945b4b_core_py":{"hash":"8d650be86088606ace23000d98e3d2fb","index":{"url":"z_210622b261945b4b_core_py.html","file":"apis_core/core/templatetags/core.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":29,"n_excluded":0,"n_missing":11,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_urls_py":{"hash":"2d7dfa86146434af48b3ab63616e5f38","index":{"url":"z_b98ef7dc8a4f2930_urls_py.html","file":"apis_core/core/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_views_py":{"hash":"1a83c291f17051c421fecbef04ec4dd7","index":{"url":"z_b98ef7dc8a4f2930_views_py.html","file":"apis_core/core/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":15,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_urls_py":{"hash":"dbd3a8c8742222b92e6a273774a835fd","index":{"url":"z_2117b3d262c5684b_urls_py.html","file":"apis_core/documentation/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_utils_py":{"hash":"96442649ba5da7d8240788e0a6a48b41","index":{"url":"z_2117b3d262c5684b_utils_py.html","file":"apis_core/documentation/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":51,"n_excluded":0,"n_missing":39,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_views_py":{"hash":"72d75c3e21d838ca3205885f86b3fba6","index":{"url":"z_2117b3d262c5684b_views_py.html","file":"apis_core/documentation/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":3,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_ef777899a9cfc89e___init___py.html","file":"apis_core/generic/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_abc_py":{"hash":"0918dc16d705d775171bfe110f2d23f9","index":{"url":"z_ef777899a9cfc89e_abc_py.html","file":"apis_core/generic/abc.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":142,"n_excluded":0,"n_missing":63,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_api_views_py":{"hash":"e9b1b9c13d1b703695851e122f426ea6","index":{"url":"z_ef777899a9cfc89e_api_views_py.html","file":"apis_core/generic/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_filterbackends_py":{"hash":"c14bab1cd7f9e7494e31bfd8aef868f8","index":{"url":"z_ef777899a9cfc89e_filterbackends_py.html","file":"apis_core/generic/filterbackends.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_filtersets_py":{"hash":"faa09d4f71d4cd80e8110214e2dbfebc","index":{"url":"z_ef777899a9cfc89e_filtersets_py.html","file":"apis_core/generic/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359___init___py":{"hash":"53b556ecb4d7d35d94f413a8af887852","index":{"url":"z_9e462fdf71a95359___init___py.html","file":"apis_core/generic/forms/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":80,"n_excluded":0,"n_missing":54,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359_fields_py":{"hash":"0429f79d33ca94612a71e6d8e88d12ac","index":{"url":"z_9e462fdf71a95359_fields_py.html","file":"apis_core/generic/forms/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":12,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359_widgets_py":{"hash":"af563162196c0849500bbe0053e5bcd6","index":{"url":"z_9e462fdf71a95359_widgets_py.html","file":"apis_core/generic/forms/widgets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":26,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_generators_py":{"hash":"8adb75abeb877297547f5a45ad4a9f0e","index":{"url":"z_ef777899a9cfc89e_generators_py.html","file":"apis_core/generic/generators.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":16,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_helpers_py":{"hash":"be7c42939201271deb0e64ca3e0571ba","index":{"url":"z_ef777899a9cfc89e_helpers_py.html","file":"apis_core/generic/helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":60,"n_excluded":0,"n_missing":38,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_importers_py":{"hash":"02990b128d8d89a7b8ef5dd8c51357f5","index":{"url":"z_ef777899a9cfc89e_importers_py.html","file":"apis_core/generic/importers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":52,"n_excluded":0,"n_missing":52,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_renderers_py":{"hash":"0389565f246f26e7f77cdb4cb0ec767e","index":{"url":"z_ef777899a9cfc89e_renderers_py.html","file":"apis_core/generic/renderers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":23,"n_excluded":0,"n_missing":23,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_routers_py":{"hash":"3a5a8262435b5272920d30dd8053435e","index":{"url":"z_ef777899a9cfc89e_routers_py.html","file":"apis_core/generic/routers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":14,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_serializers_py":{"hash":"788d4aa26663ed8d2898f4d5e45ca4e8","index":{"url":"z_ef777899a9cfc89e_serializers_py.html","file":"apis_core/generic/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_signals_py":{"hash":"041b62d750956a133205bbd2334a8076","index":{"url":"z_ef777899a9cfc89e_signals_py.html","file":"apis_core/generic/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_tables_py":{"hash":"44eb8dd232ac424151f2e841920c4e48","index":{"url":"z_ef777899a9cfc89e_tables_py.html","file":"apis_core/generic/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":10,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2d258017742203c3_generic_py":{"hash":"51f4c555624c2fe88536578f30526d83","index":{"url":"z_2d258017742203c3_generic_py.html","file":"apis_core/generic/templatetags/generic.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":28,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_urls_py":{"hash":"218223ee6e406658a47453b767061801","index":{"url":"z_ef777899a9cfc89e_urls_py.html","file":"apis_core/generic/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_views_py":{"hash":"f31ae83dca4cf8e2d2780ef24a8415be","index":{"url":"z_ef777899a9cfc89e_views_py.html","file":"apis_core/generic/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":260,"n_excluded":0,"n_missing":158,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_18f121dc3730a25c___init___py.html","file":"apis_core/history/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_api_views_py":{"hash":"cb91209928274561fc93816c88f40420","index":{"url":"z_18f121dc3730a25c_api_views_py.html","file":"apis_core/history/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_apps_py":{"hash":"5d1f76839ad2e20f0fb1a43111ae7a77","index":{"url":"z_18f121dc3730a25c_apps_py.html","file":"apis_core/history/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_models_py":{"hash":"1be817ce96db76f7a996a94e488f9a76","index":{"url":"z_18f121dc3730a25c_models_py.html","file":"apis_core/history/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":125,"n_excluded":0,"n_missing":51,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_serializers_py":{"hash":"80780bd9045178bd4786fe77e444dfde","index":{"url":"z_18f121dc3730a25c_serializers_py.html","file":"apis_core/history/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":72,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_tables_py":{"hash":"ac1a3a8a9535dede494f8adbfc5ded1d","index":{"url":"z_18f121dc3730a25c_tables_py.html","file":"apis_core/history/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_38054c303eea2897_history_py":{"hash":"7c0482109ed004cbe627286e3ab822ac","index":{"url":"z_38054c303eea2897_history_py.html","file":"apis_core/history/templatetags/history.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0b6d599bfac90e15___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_0b6d599bfac90e15___init___py.html","file":"apis_core/history/tests/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0b6d599bfac90e15_test_simple_history_py":{"hash":"710015e8731cf37dcabeb03717fd1e48","index":{"url":"z_0b6d599bfac90e15_test_simple_history_py.html","file":"apis_core/history/tests/test_simple_history.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":89,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_urls_py":{"hash":"297d24d4f7c115c6164893de92ebdab8","index":{"url":"z_18f121dc3730a25c_urls_py.html","file":"apis_core/history/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_utils_py":{"hash":"19fa0f0be718b1f977ccd1d2af185fb4","index":{"url":"z_18f121dc3730a25c_utils_py.html","file":"apis_core/history/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":27,"n_excluded":0,"n_missing":21,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_views_py":{"hash":"45675855aabb78f28c073770286f1e9a","index":{"url":"z_18f121dc3730a25c_views_py.html","file":"apis_core/history/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":31,"n_excluded":0,"n_missing":16,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_87b47be0c3172b83___init___py.html","file":"apis_core/relations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_admin_py":{"hash":"7f0812a3785198d523ad92c2c71e3f97","index":{"url":"z_87b47be0c3172b83_admin_py.html","file":"apis_core/relations/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_apps_py":{"hash":"7c1a0114dbc3eff628313c1ab9d8f951","index":{"url":"z_87b47be0c3172b83_apps_py.html","file":"apis_core/relations/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_filtersets_py":{"hash":"a4a295b78edce6b25a61689223c4c265","index":{"url":"z_87b47be0c3172b83_filtersets_py.html","file":"apis_core/relations/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":47,"n_excluded":0,"n_missing":47,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_forms_py":{"hash":"8040a006a8741343e4d51c414f3add72","index":{"url":"z_87b47be0c3172b83_forms_py.html","file":"apis_core/relations/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":113,"n_excluded":0,"n_missing":113,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_f58a2f3fa6848a17_0001_initial_py":{"hash":"fc0a930cd2aa979779662f5c80587636","index":{"url":"z_f58a2f3fa6848a17_0001_initial_py.html","file":"apis_core/relations/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_f58a2f3fa6848a17___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_f58a2f3fa6848a17___init___py.html","file":"apis_core/relations/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_models_py":{"hash":"3957bb41f7606940dc84bcf63d5eaec0","index":{"url":"z_87b47be0c3172b83_models_py.html","file":"apis_core/relations/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":66,"n_excluded":0,"n_missing":24,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_querysets_py":{"hash":"5386c7ef0d8b044564cd4b0a74c47ea2","index":{"url":"z_87b47be0c3172b83_querysets_py.html","file":"apis_core/relations/querysets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_serializers_py":{"hash":"c6d1970cfb76d5863938e9d6913e697b","index":{"url":"z_87b47be0c3172b83_serializers_py.html","file":"apis_core/relations/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":18,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_signals_py":{"hash":"83ebaf2babc926dd32ba73c0c4e140b4","index":{"url":"z_87b47be0c3172b83_signals_py.html","file":"apis_core/relations/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":29,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_tables_py":{"hash":"af36b709187e37264cdc08574de71538","index":{"url":"z_87b47be0c3172b83_tables_py.html","file":"apis_core/relations/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_75fef824206db77b_relations_py":{"hash":"a5b3ed34bd2c192cf21b2852fce0eab6","index":{"url":"z_75fef824206db77b_relations_py.html","file":"apis_core/relations/templatetags/relations.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":46,"n_excluded":0,"n_missing":28,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_urls_py":{"hash":"d73a38734e4580766ed969b126cc4cb8","index":{"url":"z_87b47be0c3172b83_urls_py.html","file":"apis_core/relations/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_utils_py":{"hash":"1142450d2e17f7e3aa753dcd7dbbb175","index":{"url":"z_87b47be0c3172b83_utils_py.html","file":"apis_core/relations/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":35,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_views_py":{"hash":"db3ee05060d3de49d614656bf29ac024","index":{"url":"z_87b47be0c3172b83_views_py.html","file":"apis_core/relations/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":31,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2c9c277fca33aa93_urls_py":{"hash":"ce75e79817bd58dad17a5a9ebc2beed2","index":{"url":"z_2c9c277fca33aa93_urls_py.html","file":"apis_core/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":30,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_DateParser_py":{"hash":"324f951dc4b00bd223849744cc0dac20","index":{"url":"z_079cb04380c5d241_DateParser_py.html","file":"apis_core/utils/DateParser.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":151,"n_excluded":0,"n_missing":59,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_079cb04380c5d241___init___py.html","file":"apis_core/utils/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_authentication_py":{"hash":"df867a1e6c47a96247adaf295e9925de","index":{"url":"z_079cb04380c5d241_authentication_py.html","file":"apis_core/utils/authentication.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_autocomplete_py":{"hash":"96810f42ae52e9265a14909d24548451","index":{"url":"z_079cb04380c5d241_autocomplete_py.html","file":"apis_core/utils/autocomplete.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":76,"n_excluded":0,"n_missing":76,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_fields_py":{"hash":"0d749e2333292bc5bc78f2ba6ed21c25","index":{"url":"z_079cb04380c5d241_fields_py.html","file":"apis_core/utils/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_filters_py":{"hash":"a04179855b2eb5bc5ec6301f79543c40","index":{"url":"z_079cb04380c5d241_filters_py.html","file":"apis_core/utils/filters.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_helpers_py":{"hash":"f9f16f6cd16b6c81544d81e6102c5522","index":{"url":"z_079cb04380c5d241_helpers_py.html","file":"apis_core/utils/helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":98,"n_excluded":0,"n_missing":71,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_normalize_py":{"hash":"0473f6fe9e28bac714718791cd154f00","index":{"url":"z_079cb04380c5d241_normalize_py.html","file":"apis_core/utils/normalize.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":11,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_rdf_py":{"hash":"d714e408948e2a68b23db2d7b3517fe1","index":{"url":"z_079cb04380c5d241_rdf_py.html","file":"apis_core/utils/rdf.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":48,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_settings_py":{"hash":"d15f3b3118bbd2a969b690c58f17d8a3","index":{"url":"z_079cb04380c5d241_settings_py.html","file":"apis_core/utils/settings.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":7,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_DateParser_py":{"hash":"dc4cc2a1ecb79e9f6571074e951dc25a","index":{"url":"z_079cb04380c5d241_test_DateParser_py.html","file":"apis_core/utils/test_DateParser.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":18,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_helpers_py":{"hash":"d20d3a9cc52fd91a2286a8d4d7c18796","index":{"url":"z_079cb04380c5d241_test_helpers_py.html","file":"apis_core/utils/test_helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_normalize_py":{"hash":"64afa22c6febe94cc4ffcbc4ac112b54","index":{"url":"z_079cb04380c5d241_test_normalize_py.html","file":"apis_core/utils/test_normalize.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":15,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_rdf_py":{"hash":"6124c5573c37d5439cca4801a306706b","index":{"url":"z_079cb04380c5d241_test_rdf_py.html","file":"apis_core/utils/test_rdf.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":45,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"manage_py":{"hash":"799c02fc92e1340821141b4ef74e1983","index":{"url":"manage_py.html","file":"manage.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":11,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_3eb2033f4386aef4___init___py.html","file":"sample_project/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_apps_py":{"hash":"74def889792d42aead7770ed46d6a43a","index":{"url":"z_3eb2033f4386aef4_apps_py.html","file":"sample_project/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_forms_py":{"hash":"4f49d56f02382ef43bac6dc024579e5e","index":{"url":"z_3eb2033f4386aef4_forms_py.html","file":"sample_project/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0001_initial_py":{"hash":"55b865871720b2823e9c72055e847b0a","index":{"url":"z_917923bad02a23ec_0001_initial_py.html","file":"sample_project/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":9,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0002_iscousinof_ispartof_issiblingof_livesin_py":{"hash":"cf5ff2bd97cd61fa59f2b5b0f89acf5f","index":{"url":"z_917923bad02a23ec_0002_iscousinof_ispartof_issiblingof_livesin_py.html","file":"sample_project/migrations/0002_iscousinof_ispartof_issiblingof_livesin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0003_alter_versiongroup_options_and_more_py":{"hash":"bc842cbfc011d0ca4b42ee2f25fb516c","index":{"url":"z_917923bad02a23ec_0003_alter_versiongroup_options_and_more_py.html","file":"sample_project/migrations/0003_alter_versiongroup_options_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_917923bad02a23ec___init___py.html","file":"sample_project/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_models_py":{"hash":"a6ffab6761e4425b97da75c447bf38f2","index":{"url":"z_3eb2033f4386aef4_models_py.html","file":"sample_project/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":40,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_querysets_py":{"hash":"19143701d1982de033b11a2e89788587","index":{"url":"z_3eb2033f4386aef4_querysets_py.html","file":"sample_project/querysets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_py":{"hash":"50ec3d276c739e31d66db70f792f34dc","index":{"url":"z_3eb2033f4386aef4_settings_py.html","file":"sample_project/settings.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_loaddata_py":{"hash":"3102892dd182d1b4fe112b14759c956b","index":{"url":"z_3eb2033f4386aef4_settings_loaddata_py.html","file":"sample_project/settings_loaddata.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":2,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_tests_py":{"hash":"c4113c57116fddca07555bc9199216db","index":{"url":"z_3eb2033f4386aef4_settings_tests_py.html","file":"sample_project/settings_tests.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":2,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_tables_py":{"hash":"6928637fb42a09a16b2e153b212d6f05","index":{"url":"z_3eb2033f4386aef4_tables_py.html","file":"sample_project/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_c3a4d981b07ef925_sample_project_py":{"hash":"9683215c47e6802ceb1174701c970d22","index":{"url":"z_c3a4d981b07ef925_sample_project_py.html","file":"sample_project/templatetags/sample_project.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":17,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_urls_py":{"hash":"5c955fdfac2dfe8eed67fcc7df6766cf","index":{"url":"z_3eb2033f4386aef4_urls_py.html","file":"sample_project/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}}}}
\ No newline at end of file
+{"note":"This file is an internal implementation detail to speed up HTML report generation. Its format can change at any time. You might be looking for the JSON report: https://coverage.rtfd.io/cmd.html#cmd-json","format":5,"version":"7.6.8","globals":"feece107ab194726947cd448c6394d06","files":{"z_2c9c277fca33aa93___init___py":{"hash":"8b764c6a278e05826e413e010d2ba52c","index":{"url":"z_2c9c277fca33aa93___init___py.html","file":"apis_core/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":1,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_572d048ccdded887___init___py.html","file":"apis_core/apis_entities/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_abc_py":{"hash":"c712ff246d658e4c19e71166124e8794","index":{"url":"z_572d048ccdded887_abc_py.html","file":"apis_core/apis_entities/abc.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_api_views_py":{"hash":"dfc5cefa6ae193f7694d02075c45eaab","index":{"url":"z_572d048ccdded887_api_views_py.html","file":"apis_core/apis_entities/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":26,"n_excluded":0,"n_missing":11,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_apps_py":{"hash":"b31066542acd671f9a82b85b42ab3a08","index":{"url":"z_572d048ccdded887_apps_py.html","file":"apis_core/apis_entities/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_autocomplete3_py":{"hash":"10caed53c5bec497b77975138e478a74","index":{"url":"z_572d048ccdded887_autocomplete3_py.html","file":"apis_core/apis_entities/autocomplete3.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_fields_py":{"hash":"b02bac53136fe9fe8c4f75002f147985","index":{"url":"z_572d048ccdded887_fields_py.html","file":"apis_core/apis_entities/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":41,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_filtersets_py":{"hash":"26f7322586363f6dfaeef04e953dcdcb","index":{"url":"z_572d048ccdded887_filtersets_py.html","file":"apis_core/apis_entities/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":42,"n_excluded":0,"n_missing":42,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0001_initial_py":{"hash":"ff63a715db2f4fdc79bc5e92b37efac8","index":{"url":"z_754a3a2495383e43_0001_initial_py.html","file":"apis_core/apis_entities/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0002_remove_tempentityclass_text_py":{"hash":"18075c4dfae6a7ff7992739cda2a8d27","index":{"url":"z_754a3a2495383e43_0002_remove_tempentityclass_text_py.html","file":"apis_core/apis_entities/migrations/0002_remove_tempentityclass_text.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0003_remove_tempentityclass_source_py":{"hash":"fc492e7a67efe14c30d76dc6b8b2cc47","index":{"url":"z_754a3a2495383e43_0003_remove_tempentityclass_source_py.html","file":"apis_core/apis_entities/migrations/0003_remove_tempentityclass_source.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43_0004_delete_tempentityclass_py":{"hash":"02a616cdc2c9c4bfbb67e3d76451fc93","index":{"url":"z_754a3a2495383e43_0004_delete_tempentityclass_py.html","file":"apis_core/apis_entities/migrations/0004_delete_tempentityclass.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_754a3a2495383e43___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_754a3a2495383e43___init___py.html","file":"apis_core/apis_entities/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_models_py":{"hash":"cb7d485758d95ea5dc3381b994d96498","index":{"url":"z_572d048ccdded887_models_py.html","file":"apis_core/apis_entities/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":61,"n_excluded":0,"n_missing":25,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_serializers_py":{"hash":"59b09a6d1f39b2752bc09581926f1ae9","index":{"url":"z_572d048ccdded887_serializers_py.html","file":"apis_core/apis_entities/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_tables_py":{"hash":"16a4accee99919f91ce3ce0fc4834021","index":{"url":"z_572d048ccdded887_tables_py.html","file":"apis_core/apis_entities/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d10b1e8419087c99_apis_entities_py":{"hash":"52a02dbb7033a31147a217c7dd75d209","index":{"url":"z_d10b1e8419087c99_apis_entities_py.html","file":"apis_core/apis_entities/templatetags/apis_entities.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_urls_py":{"hash":"120a2c6886f8e9a5dfb6faed0175a14c","index":{"url":"z_572d048ccdded887_urls_py.html","file":"apis_core/apis_entities/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_utils_py":{"hash":"f21df207e2eb654243d81e970e194e6e","index":{"url":"z_572d048ccdded887_utils_py.html","file":"apis_core/apis_entities/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_572d048ccdded887_views_py":{"hash":"8c8be5a3e671a43f28d43a10026fabe6","index":{"url":"z_572d048ccdded887_views_py.html","file":"apis_core/apis_entities/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":31,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_49ff5da25a66209a___init___py.html","file":"apis_core/apis_metainfo/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_admin_py":{"hash":"4e541411e05ec8dba04048219f4dfa5f","index":{"url":"z_49ff5da25a66209a_admin_py.html","file":"apis_core/apis_metainfo/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_apps_py":{"hash":"d83de6ac89afec673383c5c297e11eef","index":{"url":"z_49ff5da25a66209a_apps_py.html","file":"apis_core/apis_metainfo/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_filtersets_py":{"hash":"97266420e65ed37760f63c9c6b90c5e0","index":{"url":"z_49ff5da25a66209a_filtersets_py.html","file":"apis_core/apis_metainfo/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_forms_py":{"hash":"c338444cc44944f76606bd138df16333","index":{"url":"z_49ff5da25a66209a_forms_py.html","file":"apis_core/apis_metainfo/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":7,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0001_initial_py":{"hash":"daaf7860aa19f4a7005ff95affc056ae","index":{"url":"z_ef4d16bc632aabbd_0001_initial_py.html","file":"apis_core/apis_metainfo/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0002_auto_20220201_1241_py":{"hash":"1d1170f5ba3d133d9743c257fe5a7364","index":{"url":"z_ef4d16bc632aabbd_0002_auto_20220201_1241_py.html","file":"apis_core/apis_metainfo/migrations/0002_auto_20220201_1241.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0003_auto_20220218_1530_py":{"hash":"88f0cd87c10b55577d001b76ed50856d","index":{"url":"z_ef4d16bc632aabbd_0003_auto_20220218_1530_py.html","file":"apis_core/apis_metainfo/migrations/0003_auto_20220218_1530.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0004_auto_20230310_0804_py":{"hash":"ce54e934b97196aa3bf5f6a72f8fd01c","index":{"url":"z_ef4d16bc632aabbd_0004_auto_20230310_0804_py.html","file":"apis_core/apis_metainfo/migrations/0004_auto_20230310_0804.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0005_delete_uricandidate_py":{"hash":"5b5d32a0aae8f358bd34cfd4e468351d","index":{"url":"z_ef4d16bc632aabbd_0005_delete_uricandidate_py.html","file":"apis_core/apis_metainfo/migrations/0005_delete_uricandidate.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0006_delete_text_py":{"hash":"b55f1ca1e43502df80db46b8c1756037","index":{"url":"z_ef4d16bc632aabbd_0006_delete_text_py.html","file":"apis_core/apis_metainfo/migrations/0006_delete_text.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0007_delete_source_py":{"hash":"084fbcb9d86b5c7d00f858815af945dc","index":{"url":"z_ef4d16bc632aabbd_0007_delete_source_py.html","file":"apis_core/apis_metainfo/migrations/0007_delete_source.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0008_alter_rootobject_self_contenttype_py":{"hash":"d7554164870c11c267087ab897c446fc","index":{"url":"z_ef4d16bc632aabbd_0008_alter_rootobject_self_contenttype_py.html","file":"apis_core/apis_metainfo/migrations/0008_alter_rootobject_self_contenttype.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0009_remove_collection_collection_type_py":{"hash":"36e01f75faa85d5564099dee32655e6f","index":{"url":"z_ef4d16bc632aabbd_0009_remove_collection_collection_type_py.html","file":"apis_core/apis_metainfo/migrations/0009_remove_collection_collection_type.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0010_rename_name_rootobject_deprecated_name_py":{"hash":"f453080f0a7afc16e0d267a66c3cbe34","index":{"url":"z_ef4d16bc632aabbd_0010_rename_name_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0010_rename_name_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0011_alter_rootobject_deprecated_name_py":{"hash":"1c50627ed00efca8863744175c5e19fe","index":{"url":"z_ef4d16bc632aabbd_0011_alter_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0011_alter_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0012_remove_rootobject_deprecated_name_py":{"hash":"8f7802b5a60d3ec850583b01d212f41a","index":{"url":"z_ef4d16bc632aabbd_0012_remove_rootobject_deprecated_name_py.html","file":"apis_core/apis_metainfo/migrations/0012_remove_rootobject_deprecated_name.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0013_delete_collection_py":{"hash":"9734e9e2e30bbfcf8c109b3841e84ba0","index":{"url":"z_ef4d16bc632aabbd_0013_delete_collection_py.html","file":"apis_core/apis_metainfo/migrations/0013_delete_collection.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd_0014_remove_uri_domain_remove_uri_loaded_and_more_py":{"hash":"0dbd1d666f4d297c800d77b8ca1e96d3","index":{"url":"z_ef4d16bc632aabbd_0014_remove_uri_domain_remove_uri_loaded_and_more_py.html","file":"apis_core/apis_metainfo/migrations/0014_remove_uri_domain_remove_uri_loaded_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef4d16bc632aabbd___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_ef4d16bc632aabbd___init___py.html","file":"apis_core/apis_metainfo/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_models_py":{"hash":"196a625eafad6c3577bc19c658acef31","index":{"url":"z_49ff5da25a66209a_models_py.html","file":"apis_core/apis_metainfo/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":59,"n_excluded":0,"n_missing":20,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_serializers_py":{"hash":"39bcb56717777eccbb048b5228e53a82","index":{"url":"z_49ff5da25a66209a_serializers_py.html","file":"apis_core/apis_metainfo/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_tables_py":{"hash":"a832a966312236a71886c7933c5e1f5f","index":{"url":"z_49ff5da25a66209a_tables_py.html","file":"apis_core/apis_metainfo/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":14,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_urls_py":{"hash":"b541d254e410e4ce5dc457b6e9624109","index":{"url":"z_49ff5da25a66209a_urls_py.html","file":"apis_core/apis_metainfo/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_49ff5da25a66209a_viewsets_py":{"hash":"b90e08efeadddcb6fee115b69c76b1dc","index":{"url":"z_49ff5da25a66209a_viewsets_py.html","file":"apis_core/apis_metainfo/viewsets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":18,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_742a021fcfacff1d___init___py.html","file":"apis_core/apis_relations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_admin_py":{"hash":"ae8aae169bd34fd624b130ccc761bf52","index":{"url":"z_742a021fcfacff1d_admin_py.html","file":"apis_core/apis_relations/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_apps_py":{"hash":"74cc9ab68130b85956eec996a6513a43","index":{"url":"z_742a021fcfacff1d_apps_py.html","file":"apis_core/apis_relations/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_filters_py":{"hash":"172c35355daa50a783016e66886b332f","index":{"url":"z_742a021fcfacff1d_filters_py.html","file":"apis_core/apis_relations/filters.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":38,"n_excluded":0,"n_missing":38,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_filtersets_py":{"hash":"386122f50e30d017f34604c42696cedc","index":{"url":"z_742a021fcfacff1d_filtersets_py.html","file":"apis_core/apis_relations/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":37,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_forms_py":{"hash":"0f0d8cfc788387f199385c1abd264770","index":{"url":"z_742a021fcfacff1d_forms_py.html","file":"apis_core/apis_relations/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":83,"n_excluded":0,"n_missing":55,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0001_initial_py":{"hash":"70ff11a333782c19b47f26b28a3ca503","index":{"url":"z_5d8b244af5c2277b_0001_initial_py.html","file":"apis_core/apis_relations/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0002_property_property_class_uri_py":{"hash":"fafe07a1a62ca3c8e6ec0ed7c8596b2b","index":{"url":"z_5d8b244af5c2277b_0002_property_property_class_uri_py.html","file":"apis_core/apis_relations/migrations/0002_property_property_class_uri.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0003_auto_20230123_1715_py":{"hash":"b3c76da6b8ce945578c7c1f7cacebbab","index":{"url":"z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html","file":"apis_core/apis_relations/migrations/0003_auto_20230123_1715.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0004_auto_20230124_1201_py":{"hash":"1ba8fcfde8ba76b3d9ff6f4814041285","index":{"url":"z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html","file":"apis_core/apis_relations/migrations/0004_auto_20230124_1201.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py":{"hash":"663863457b0cc3b4d4b1fc761e45f648","index":{"url":"z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html","file":"apis_core/apis_relations/migrations/0005_alter_property_obj_class_alter_property_subj_class.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0006_versiontemptriple_py":{"hash":"d4aac064dd43ac411dee8381e50d8a8a","index":{"url":"z_5d8b244af5c2277b_0006_versiontemptriple_py.html","file":"apis_core/apis_relations/migrations/0006_versiontemptriple.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":9,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py":{"hash":"fe82e1983aa24c49f43690d62aaf9bb5","index":{"url":"z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html","file":"apis_core/apis_relations/migrations/0007_alter_versiontemptriple_options.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_5d8b244af5c2277b___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_5d8b244af5c2277b___init___py.html","file":"apis_core/apis_relations/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_models_py":{"hash":"76a0274e3797a062dcfd20786ca4ac85","index":{"url":"z_742a021fcfacff1d_models_py.html","file":"apis_core/apis_relations/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":206,"n_excluded":0,"n_missing":72,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_signals_py":{"hash":"130779b53b83544c9a39788cef2153bf","index":{"url":"z_742a021fcfacff1d_signals_py.html","file":"apis_core/apis_relations/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":24,"n_excluded":0,"n_missing":10,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_tables_py":{"hash":"e3e95a867091114597d82e82df7cc59b","index":{"url":"z_742a021fcfacff1d_tables_py.html","file":"apis_core/apis_relations/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":104,"n_excluded":0,"n_missing":47,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_bacc1c03c9be4470_apis_relations_py":{"hash":"94540984cc987b2b5405bf6b71bee993","index":{"url":"z_bacc1c03c9be4470_apis_relations_py.html","file":"apis_core/apis_relations/templatetags/apis_relations.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_urls_py":{"hash":"7b5a0bd00318e4aa7a7466252997d746","index":{"url":"z_742a021fcfacff1d_urls_py.html","file":"apis_core/apis_relations/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_utils_py":{"hash":"4946c18b65e74bf6d0518118076b740f","index":{"url":"z_742a021fcfacff1d_utils_py.html","file":"apis_core/apis_relations/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":35,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_742a021fcfacff1d_views_py":{"hash":"08084711918659df479562b01cf0f49f","index":{"url":"z_742a021fcfacff1d_views_py.html","file":"apis_core/apis_relations/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":78,"n_excluded":0,"n_missing":62,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0001_initial_py":{"hash":"98b6d2c4b3f9d5cb1286a06a3f41b316","index":{"url":"z_e42e1fb98877cc0c_0001_initial_py.html","file":"apis_core/apis_vocabularies/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0002_remove_texttype_collections_and_more_py":{"hash":"21b9dd63e34603e0fd2df6283eaf6e26","index":{"url":"z_e42e1fb98877cc0c_0002_remove_texttype_collections_and_more_py.html","file":"apis_core/apis_vocabularies/migrations/0002_remove_texttype_collections_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0003_delete_vocabnames_delete_vocabsuri_py":{"hash":"467fb37690e0b828cc8c4f978ea47406","index":{"url":"z_e42e1fb98877cc0c_0003_delete_vocabnames_delete_vocabsuri_py.html","file":"apis_core/apis_vocabularies/migrations/0003_delete_vocabnames_delete_vocabsuri.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0004_delete_collectiontype_py":{"hash":"2d475e0b0dbfba701642d013f5fe1fbc","index":{"url":"z_e42e1fb98877cc0c_0004_delete_collectiontype_py.html","file":"apis_core/apis_vocabularies/migrations/0004_delete_collectiontype.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c_0005_delete_vocabsbaseclass_py":{"hash":"78a47bf6d62b544ab562a92291a7d650","index":{"url":"z_e42e1fb98877cc0c_0005_delete_vocabsbaseclass_py.html","file":"apis_core/apis_vocabularies/migrations/0005_delete_vocabsbaseclass.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_e42e1fb98877cc0c___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_e42e1fb98877cc0c___init___py.html","file":"apis_core/apis_vocabularies/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_73d20026d8cfd537___init___py.html","file":"apis_core/collections/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_admin_py":{"hash":"5845cfa470e7623908106bbb0c18b4b0","index":{"url":"z_73d20026d8cfd537_admin_py.html","file":"apis_core/collections/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_apps_py":{"hash":"8b4c022eb701df4548328507b2684502","index":{"url":"z_73d20026d8cfd537_apps_py.html","file":"apis_core/collections/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0001_initial_py":{"hash":"6618311bdc7a049e75b4dc3207fbfa87","index":{"url":"z_782cd176b95f1058_0001_initial_py.html","file":"apis_core/collections/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0002_alter_skoscollection_options_py":{"hash":"b0b60366621f8b25e717a0b847a59636","index":{"url":"z_782cd176b95f1058_0002_alter_skoscollection_options_py.html","file":"apis_core/collections/migrations/0002_alter_skoscollection_options.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058_0003_skoscollection_unique_name_parent_and_more_py":{"hash":"79df930b0df0b99c17afbb2fefaf8a71","index":{"url":"z_782cd176b95f1058_0003_skoscollection_unique_name_parent_and_more_py.html","file":"apis_core/collections/migrations/0003_skoscollection_unique_name_parent_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_782cd176b95f1058___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_782cd176b95f1058___init___py.html","file":"apis_core/collections/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_models_py":{"hash":"4f7b5fee51a9e88efcedefc56c96ec06","index":{"url":"z_73d20026d8cfd537_models_py.html","file":"apis_core/collections/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":37,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_signals_py":{"hash":"2d6786b363a86513e58b940c30bd11cc","index":{"url":"z_73d20026d8cfd537_signals_py.html","file":"apis_core/collections/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":16,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_tables_py":{"hash":"331260664e1d367c370c5839a21c358d","index":{"url":"z_73d20026d8cfd537_tables_py.html","file":"apis_core/collections/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d4c4f42115e675b2___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_d4c4f42115e675b2___init___py.html","file":"apis_core/collections/templatetags/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_d4c4f42115e675b2_collections_py":{"hash":"d9e57ca4e136070b88ac61939f2bbb7e","index":{"url":"z_d4c4f42115e675b2_collections_py.html","file":"apis_core/collections/templatetags/collections.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":50,"n_excluded":0,"n_missing":30,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_a87bbc0055e2906a___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_a87bbc0055e2906a___init___py.html","file":"apis_core/collections/tests/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_a87bbc0055e2906a_tests_py":{"hash":"52b2e0a52909e1ef78e14113aac98bfe","index":{"url":"z_a87bbc0055e2906a_tests_py.html","file":"apis_core/collections/tests/tests.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":34,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_urls_py":{"hash":"aca5397b28b0c059309032cc4a0fdb19","index":{"url":"z_73d20026d8cfd537_urls_py.html","file":"apis_core/collections/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_73d20026d8cfd537_views_py":{"hash":"4ec998617d58fbdf5a83dff179bb650e","index":{"url":"z_73d20026d8cfd537_views_py.html","file":"apis_core/collections/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":57,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_mixins_py":{"hash":"e90b0bf68fd1a9a4b62152b359371567","index":{"url":"z_b98ef7dc8a4f2930_mixins_py.html","file":"apis_core/core/mixins.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":12,"n_excluded":0,"n_missing":8,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_models_py":{"hash":"db1f627638bbd754b8e5b3eb69813075","index":{"url":"z_b98ef7dc8a4f2930_models_py.html","file":"apis_core/core/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":46,"n_excluded":0,"n_missing":32,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_210622b261945b4b_core_py":{"hash":"8d650be86088606ace23000d98e3d2fb","index":{"url":"z_210622b261945b4b_core_py.html","file":"apis_core/core/templatetags/core.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":29,"n_excluded":0,"n_missing":11,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_urls_py":{"hash":"2d7dfa86146434af48b3ab63616e5f38","index":{"url":"z_b98ef7dc8a4f2930_urls_py.html","file":"apis_core/core/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_b98ef7dc8a4f2930_views_py":{"hash":"1a83c291f17051c421fecbef04ec4dd7","index":{"url":"z_b98ef7dc8a4f2930_views_py.html","file":"apis_core/core/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":15,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_urls_py":{"hash":"dbd3a8c8742222b92e6a273774a835fd","index":{"url":"z_2117b3d262c5684b_urls_py.html","file":"apis_core/documentation/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_utils_py":{"hash":"96442649ba5da7d8240788e0a6a48b41","index":{"url":"z_2117b3d262c5684b_utils_py.html","file":"apis_core/documentation/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":51,"n_excluded":0,"n_missing":39,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2117b3d262c5684b_views_py":{"hash":"72d75c3e21d838ca3205885f86b3fba6","index":{"url":"z_2117b3d262c5684b_views_py.html","file":"apis_core/documentation/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":8,"n_excluded":0,"n_missing":3,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_ef777899a9cfc89e___init___py.html","file":"apis_core/generic/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_abc_py":{"hash":"0918dc16d705d775171bfe110f2d23f9","index":{"url":"z_ef777899a9cfc89e_abc_py.html","file":"apis_core/generic/abc.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":142,"n_excluded":0,"n_missing":63,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_api_views_py":{"hash":"e9b1b9c13d1b703695851e122f426ea6","index":{"url":"z_ef777899a9cfc89e_api_views_py.html","file":"apis_core/generic/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_filterbackends_py":{"hash":"c14bab1cd7f9e7494e31bfd8aef868f8","index":{"url":"z_ef777899a9cfc89e_filterbackends_py.html","file":"apis_core/generic/filterbackends.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_filtersets_py":{"hash":"faa09d4f71d4cd80e8110214e2dbfebc","index":{"url":"z_ef777899a9cfc89e_filtersets_py.html","file":"apis_core/generic/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359___init___py":{"hash":"53b556ecb4d7d35d94f413a8af887852","index":{"url":"z_9e462fdf71a95359___init___py.html","file":"apis_core/generic/forms/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":80,"n_excluded":0,"n_missing":54,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359_fields_py":{"hash":"0429f79d33ca94612a71e6d8e88d12ac","index":{"url":"z_9e462fdf71a95359_fields_py.html","file":"apis_core/generic/forms/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":12,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_9e462fdf71a95359_widgets_py":{"hash":"af563162196c0849500bbe0053e5bcd6","index":{"url":"z_9e462fdf71a95359_widgets_py.html","file":"apis_core/generic/forms/widgets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":26,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_generators_py":{"hash":"8adb75abeb877297547f5a45ad4a9f0e","index":{"url":"z_ef777899a9cfc89e_generators_py.html","file":"apis_core/generic/generators.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":16,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_helpers_py":{"hash":"be7c42939201271deb0e64ca3e0571ba","index":{"url":"z_ef777899a9cfc89e_helpers_py.html","file":"apis_core/generic/helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":60,"n_excluded":0,"n_missing":38,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_importers_py":{"hash":"02990b128d8d89a7b8ef5dd8c51357f5","index":{"url":"z_ef777899a9cfc89e_importers_py.html","file":"apis_core/generic/importers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":52,"n_excluded":0,"n_missing":52,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_renderers_py":{"hash":"0389565f246f26e7f77cdb4cb0ec767e","index":{"url":"z_ef777899a9cfc89e_renderers_py.html","file":"apis_core/generic/renderers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":23,"n_excluded":0,"n_missing":23,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_routers_py":{"hash":"3a5a8262435b5272920d30dd8053435e","index":{"url":"z_ef777899a9cfc89e_routers_py.html","file":"apis_core/generic/routers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":14,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_serializers_py":{"hash":"788d4aa26663ed8d2898f4d5e45ca4e8","index":{"url":"z_ef777899a9cfc89e_serializers_py.html","file":"apis_core/generic/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_signals_py":{"hash":"041b62d750956a133205bbd2334a8076","index":{"url":"z_ef777899a9cfc89e_signals_py.html","file":"apis_core/generic/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_tables_py":{"hash":"44eb8dd232ac424151f2e841920c4e48","index":{"url":"z_ef777899a9cfc89e_tables_py.html","file":"apis_core/generic/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":10,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2d258017742203c3_generic_py":{"hash":"51f4c555624c2fe88536578f30526d83","index":{"url":"z_2d258017742203c3_generic_py.html","file":"apis_core/generic/templatetags/generic.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":28,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_urls_py":{"hash":"218223ee6e406658a47453b767061801","index":{"url":"z_ef777899a9cfc89e_urls_py.html","file":"apis_core/generic/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_ef777899a9cfc89e_views_py":{"hash":"f31ae83dca4cf8e2d2780ef24a8415be","index":{"url":"z_ef777899a9cfc89e_views_py.html","file":"apis_core/generic/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":260,"n_excluded":0,"n_missing":158,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_18f121dc3730a25c___init___py.html","file":"apis_core/history/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_api_views_py":{"hash":"cb91209928274561fc93816c88f40420","index":{"url":"z_18f121dc3730a25c_api_views_py.html","file":"apis_core/history/api_views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_apps_py":{"hash":"5d1f76839ad2e20f0fb1a43111ae7a77","index":{"url":"z_18f121dc3730a25c_apps_py.html","file":"apis_core/history/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_models_py":{"hash":"1be817ce96db76f7a996a94e488f9a76","index":{"url":"z_18f121dc3730a25c_models_py.html","file":"apis_core/history/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":125,"n_excluded":0,"n_missing":51,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_serializers_py":{"hash":"80780bd9045178bd4786fe77e444dfde","index":{"url":"z_18f121dc3730a25c_serializers_py.html","file":"apis_core/history/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":72,"n_excluded":0,"n_missing":37,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_tables_py":{"hash":"ac1a3a8a9535dede494f8adbfc5ded1d","index":{"url":"z_18f121dc3730a25c_tables_py.html","file":"apis_core/history/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":25,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_38054c303eea2897_history_py":{"hash":"7c0482109ed004cbe627286e3ab822ac","index":{"url":"z_38054c303eea2897_history_py.html","file":"apis_core/history/templatetags/history.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0b6d599bfac90e15___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_0b6d599bfac90e15___init___py.html","file":"apis_core/history/tests/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_0b6d599bfac90e15_test_simple_history_py":{"hash":"710015e8731cf37dcabeb03717fd1e48","index":{"url":"z_0b6d599bfac90e15_test_simple_history_py.html","file":"apis_core/history/tests/test_simple_history.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":89,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_urls_py":{"hash":"297d24d4f7c115c6164893de92ebdab8","index":{"url":"z_18f121dc3730a25c_urls_py.html","file":"apis_core/history/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_utils_py":{"hash":"19fa0f0be718b1f977ccd1d2af185fb4","index":{"url":"z_18f121dc3730a25c_utils_py.html","file":"apis_core/history/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":27,"n_excluded":0,"n_missing":21,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_18f121dc3730a25c_views_py":{"hash":"45675855aabb78f28c073770286f1e9a","index":{"url":"z_18f121dc3730a25c_views_py.html","file":"apis_core/history/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":31,"n_excluded":0,"n_missing":16,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_87b47be0c3172b83___init___py.html","file":"apis_core/relations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_admin_py":{"hash":"7f0812a3785198d523ad92c2c71e3f97","index":{"url":"z_87b47be0c3172b83_admin_py.html","file":"apis_core/relations/admin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_apps_py":{"hash":"7c1a0114dbc3eff628313c1ab9d8f951","index":{"url":"z_87b47be0c3172b83_apps_py.html","file":"apis_core/relations/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_filtersets_py":{"hash":"a4a295b78edce6b25a61689223c4c265","index":{"url":"z_87b47be0c3172b83_filtersets_py.html","file":"apis_core/relations/filtersets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":47,"n_excluded":0,"n_missing":47,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_forms_py":{"hash":"8040a006a8741343e4d51c414f3add72","index":{"url":"z_87b47be0c3172b83_forms_py.html","file":"apis_core/relations/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":113,"n_excluded":0,"n_missing":113,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_f58a2f3fa6848a17_0001_initial_py":{"hash":"fc0a930cd2aa979779662f5c80587636","index":{"url":"z_f58a2f3fa6848a17_0001_initial_py.html","file":"apis_core/relations/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_f58a2f3fa6848a17___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_f58a2f3fa6848a17___init___py.html","file":"apis_core/relations/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_models_py":{"hash":"3957bb41f7606940dc84bcf63d5eaec0","index":{"url":"z_87b47be0c3172b83_models_py.html","file":"apis_core/relations/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":66,"n_excluded":0,"n_missing":24,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_querysets_py":{"hash":"5386c7ef0d8b044564cd4b0a74c47ea2","index":{"url":"z_87b47be0c3172b83_querysets_py.html","file":"apis_core/relations/querysets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_serializers_py":{"hash":"c6d1970cfb76d5863938e9d6913e697b","index":{"url":"z_87b47be0c3172b83_serializers_py.html","file":"apis_core/relations/serializers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":18,"n_excluded":0,"n_missing":18,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_signals_py":{"hash":"83ebaf2babc926dd32ba73c0c4e140b4","index":{"url":"z_87b47be0c3172b83_signals_py.html","file":"apis_core/relations/signals.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":29,"n_excluded":0,"n_missing":14,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_tables_py":{"hash":"af36b709187e37264cdc08574de71538","index":{"url":"z_87b47be0c3172b83_tables_py.html","file":"apis_core/relations/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":10,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_75fef824206db77b_relations_py":{"hash":"a5b3ed34bd2c192cf21b2852fce0eab6","index":{"url":"z_75fef824206db77b_relations_py.html","file":"apis_core/relations/templatetags/relations.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":46,"n_excluded":0,"n_missing":28,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_urls_py":{"hash":"d73a38734e4580766ed969b126cc4cb8","index":{"url":"z_87b47be0c3172b83_urls_py.html","file":"apis_core/relations/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_utils_py":{"hash":"1142450d2e17f7e3aa753dcd7dbbb175","index":{"url":"z_87b47be0c3172b83_utils_py.html","file":"apis_core/relations/utils.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":35,"n_excluded":0,"n_missing":26,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_87b47be0c3172b83_views_py":{"hash":"db3ee05060d3de49d614656bf29ac024","index":{"url":"z_87b47be0c3172b83_views_py.html","file":"apis_core/relations/views.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":49,"n_excluded":0,"n_missing":31,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_2c9c277fca33aa93_urls_py":{"hash":"ce75e79817bd58dad17a5a9ebc2beed2","index":{"url":"z_2c9c277fca33aa93_urls_py.html","file":"apis_core/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":30,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_DateParser_py":{"hash":"d6e23a3afbed834883bb28319626e4fa","index":{"url":"z_079cb04380c5d241_DateParser_py.html","file":"apis_core/utils/DateParser.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":133,"n_excluded":0,"n_missing":56,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_079cb04380c5d241___init___py.html","file":"apis_core/utils/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_authentication_py":{"hash":"df867a1e6c47a96247adaf295e9925de","index":{"url":"z_079cb04380c5d241_authentication_py.html","file":"apis_core/utils/authentication.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_autocomplete_py":{"hash":"96810f42ae52e9265a14909d24548451","index":{"url":"z_079cb04380c5d241_autocomplete_py.html","file":"apis_core/utils/autocomplete.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":76,"n_excluded":0,"n_missing":76,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_fields_py":{"hash":"0d749e2333292bc5bc78f2ba6ed21c25","index":{"url":"z_079cb04380c5d241_fields_py.html","file":"apis_core/utils/fields.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_filters_py":{"hash":"a04179855b2eb5bc5ec6301f79543c40","index":{"url":"z_079cb04380c5d241_filters_py.html","file":"apis_core/utils/filters.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":12,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_helpers_py":{"hash":"f9f16f6cd16b6c81544d81e6102c5522","index":{"url":"z_079cb04380c5d241_helpers_py.html","file":"apis_core/utils/helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":98,"n_excluded":0,"n_missing":71,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_normalize_py":{"hash":"0473f6fe9e28bac714718791cd154f00","index":{"url":"z_079cb04380c5d241_normalize_py.html","file":"apis_core/utils/normalize.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":11,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_rdf_py":{"hash":"d714e408948e2a68b23db2d7b3517fe1","index":{"url":"z_079cb04380c5d241_rdf_py.html","file":"apis_core/utils/rdf.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":48,"n_excluded":0,"n_missing":1,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_settings_py":{"hash":"d15f3b3118bbd2a969b690c58f17d8a3","index":{"url":"z_079cb04380c5d241_settings_py.html","file":"apis_core/utils/settings.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":21,"n_excluded":0,"n_missing":7,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_DateParser_py":{"hash":"65b6e1eedea876778f6750e8d31e2c99","index":{"url":"z_079cb04380c5d241_test_DateParser_py.html","file":"apis_core/utils/test_DateParser.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":14,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_helpers_py":{"hash":"d20d3a9cc52fd91a2286a8d4d7c18796","index":{"url":"z_079cb04380c5d241_test_helpers_py.html","file":"apis_core/utils/test_helpers.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":7,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_normalize_py":{"hash":"64afa22c6febe94cc4ffcbc4ac112b54","index":{"url":"z_079cb04380c5d241_test_normalize_py.html","file":"apis_core/utils/test_normalize.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":15,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_079cb04380c5d241_test_rdf_py":{"hash":"6124c5573c37d5439cca4801a306706b","index":{"url":"z_079cb04380c5d241_test_rdf_py.html","file":"apis_core/utils/test_rdf.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":45,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"manage_py":{"hash":"799c02fc92e1340821141b4ef74e1983","index":{"url":"manage_py.html","file":"manage.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":11,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_3eb2033f4386aef4___init___py.html","file":"sample_project/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_apps_py":{"hash":"74def889792d42aead7770ed46d6a43a","index":{"url":"z_3eb2033f4386aef4_apps_py.html","file":"sample_project/apps.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_forms_py":{"hash":"4f49d56f02382ef43bac6dc024579e5e","index":{"url":"z_3eb2033f4386aef4_forms_py.html","file":"sample_project/forms.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":4,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0001_initial_py":{"hash":"55b865871720b2823e9c72055e847b0a","index":{"url":"z_917923bad02a23ec_0001_initial_py.html","file":"sample_project/migrations/0001_initial.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":9,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0002_iscousinof_ispartof_issiblingof_livesin_py":{"hash":"cf5ff2bd97cd61fa59f2b5b0f89acf5f","index":{"url":"z_917923bad02a23ec_0002_iscousinof_ispartof_issiblingof_livesin_py.html","file":"sample_project/migrations/0002_iscousinof_ispartof_issiblingof_livesin.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":5,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec_0003_alter_versiongroup_options_and_more_py":{"hash":"bc842cbfc011d0ca4b42ee2f25fb516c","index":{"url":"z_917923bad02a23ec_0003_alter_versiongroup_options_and_more_py.html","file":"sample_project/migrations/0003_alter_versiongroup_options_and_more.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":4,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_917923bad02a23ec___init___py":{"hash":"e6baa73cda2916dad605215f937a92e1","index":{"url":"z_917923bad02a23ec___init___py.html","file":"sample_project/migrations/__init__.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":0,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_models_py":{"hash":"a6ffab6761e4425b97da75c447bf38f2","index":{"url":"z_3eb2033f4386aef4_models_py.html","file":"sample_project/models.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":40,"n_excluded":0,"n_missing":5,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_querysets_py":{"hash":"19143701d1982de033b11a2e89788587","index":{"url":"z_3eb2033f4386aef4_querysets_py.html","file":"sample_project/querysets.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_py":{"hash":"50ec3d276c739e31d66db70f792f34dc","index":{"url":"z_3eb2033f4386aef4_settings_py.html","file":"sample_project/settings.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":20,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_loaddata_py":{"hash":"3102892dd182d1b4fe112b14759c956b","index":{"url":"z_3eb2033f4386aef4_settings_loaddata_py.html","file":"sample_project/settings_loaddata.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":2,"n_excluded":0,"n_missing":2,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_settings_tests_py":{"hash":"c4113c57116fddca07555bc9199216db","index":{"url":"z_3eb2033f4386aef4_settings_tests_py.html","file":"sample_project/settings_tests.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":2,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_tables_py":{"hash":"6928637fb42a09a16b2e153b212d6f05","index":{"url":"z_3eb2033f4386aef4_tables_py.html","file":"sample_project/tables.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":6,"n_excluded":0,"n_missing":6,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_c3a4d981b07ef925_sample_project_py":{"hash":"9683215c47e6802ceb1174701c970d22","index":{"url":"z_c3a4d981b07ef925_sample_project_py.html","file":"sample_project/templatetags/sample_project.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":17,"n_excluded":0,"n_missing":9,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}},"z_3eb2033f4386aef4_urls_py":{"hash":"5c955fdfac2dfe8eed67fcc7df6766cf","index":{"url":"z_3eb2033f4386aef4_urls_py.html","file":"sample_project/urls.py","description":"","nums":{"precision":0,"n_files":1,"n_statements":3,"n_excluded":0,"n_missing":0,"n_branches":0,"n_partial_branches":0,"n_missing_branches":0}}}}}
\ No newline at end of file
diff --git a/htmlcov/z_079cb04380c5d241_DateParser_py.html b/htmlcov/z_079cb04380c5d241_DateParser_py.html
index 08ae93a79..9c3adcdd0 100644
--- a/htmlcov/z_079cb04380c5d241_DateParser_py.html
+++ b/htmlcov/z_079cb04380c5d241_DateParser_py.html
@@ -2,7 +2,7 @@
- Coverage for apis_core/utils/DateParser.py: 61%
+ Coverage for apis_core/utils/DateParser.py: 58%
@@ -12,7 +12,7 @@
Coverage for apis_core/utils/DateParser.py :
- 61%
+ 58%
- 151 statements
- 92 run
- 59 missing
+ 133 statements
+ 77 run
+ 56 missing
0 excluded
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -355,82 +355,6 @@
273 print ( "Could not parse date: '" , date_string , "' due to error: " , e )
274
275 return date_single , date_ab , date_bis
- 276
- 277
- 278 def get_date_help_text_from_dates (
- 279 single_date , single_start_date , single_end_date , single_date_written
- 280 ) :
- 281 """
- 282 function for creating string help text from parsed dates, to provide feedback to the user
- 283 about the parsing status of a given date field.
- 284
- 285 :param single_date: datetime :
- 286 the individual date point
- 287 :param single_start_date: datetime :
- 288 the start range of a date
- 289 :param single_end_date: datetime :
- 290 the endrange of a date
- 291 :param single_date_written: str :
- 292 the textual user entry of a date field (needed to check if empty or not)
- 293 :return help_text: str :
- 294 The text to be displayed underneath a date field, informing the user about the parsing result
- 295 """
- 296
- 297 # check which of the dates could be parsed to construct the relevant feedback text
- 298 help_text = ""
- 299 if single_date :
- 300 # single date could be parsed
- 301 help_text = "Date interpreted as "
- 302 if single_start_date or single_end_date :
- 303 # date has also start or end ranges, then ignore single date
- 304 if single_start_date :
- 305 # date has start range
- 306 help_text += (
- 307 str ( single_start_date . year )
- 308 + "-"
- 309 + str ( single_start_date . month )
- 310 + "-"
- 311 + str ( single_start_date . day )
- 312 + " until "
- 313 )
- 314 else :
- 315 # date has no start range, then write "undefined"
- 316 help_text += "undefined start until "
- 317 if single_end_date :
- 318 # date has end range
- 319 help_text += (
- 320 str ( single_end_date . year )
- 321 + "-"
- 322 + str ( single_end_date . month )
- 323 + "-"
- 324 + str ( single_end_date . day )
- 325 )
- 326 else :
- 327 # date has no start range, then write "undefined"
- 328 help_text += "undefined end"
- 329 else :
- 330 # date has no start nor end range. Use single date then.
- 331 help_text += (
- 332 str ( single_date . year )
- 333 + "-"
- 334 + str ( single_date . month )
- 335 + "-"
- 336 + str ( single_date . day )
- 337 )
- 338 elif single_date_written is not None :
- 339 # date input field is not empty but it could not be parsed either. Show parsing info and help text
- 340 help_text = (
- 341 "<b>Date could not be interpreted</b><br>" + get_date_help_text_default ( )
- 342 )
- 343 else :
- 344 # date field is completely empty. Show help text only
- 345 help_text = get_date_help_text_default ( )
- 346
- 347 return help_text
- 348
- 349
- 350 def get_date_help_text_default ( ) :
- 351 return "Dates are interpreted by defined rules. If this fails, an iso-date can be explicitly set with '<YYYY-MM-DD>'."
diff --git a/htmlcov/z_079cb04380c5d241___init___py.html b/htmlcov/z_079cb04380c5d241___init___py.html
index adb5afe6a..af1b02b0d 100644
--- a/htmlcov/z_079cb04380c5d241___init___py.html
+++ b/htmlcov/z_079cb04380c5d241___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_authentication_py.html b/htmlcov/z_079cb04380c5d241_authentication_py.html
index 87b8bfac2..61387790c 100644
--- a/htmlcov/z_079cb04380c5d241_authentication_py.html
+++ b/htmlcov/z_079cb04380c5d241_authentication_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -109,7 +109,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_autocomplete_py.html b/htmlcov/z_079cb04380c5d241_autocomplete_py.html
index cd14518de..0f4689ce1 100644
--- a/htmlcov/z_079cb04380c5d241_autocomplete_py.html
+++ b/htmlcov/z_079cb04380c5d241_autocomplete_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -234,7 +234,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_fields_py.html b/htmlcov/z_079cb04380c5d241_fields_py.html
index 1bd5f4082..975810c51 100644
--- a/htmlcov/z_079cb04380c5d241_fields_py.html
+++ b/htmlcov/z_079cb04380c5d241_fields_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -107,7 +107,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_filters_py.html b/htmlcov/z_079cb04380c5d241_filters_py.html
index 2abd616a4..139db1753 100644
--- a/htmlcov/z_079cb04380c5d241_filters_py.html
+++ b/htmlcov/z_079cb04380c5d241_filters_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -118,7 +118,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_helpers_py.html b/htmlcov/z_079cb04380c5d241_helpers_py.html
index 5f383db6e..eb7d1a75d 100644
--- a/htmlcov/z_079cb04380c5d241_helpers_py.html
+++ b/htmlcov/z_079cb04380c5d241_helpers_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -262,7 +262,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_normalize_py.html b/htmlcov/z_079cb04380c5d241_normalize_py.html
index fc96ed4a6..670d654dc 100644
--- a/htmlcov/z_079cb04380c5d241_normalize_py.html
+++ b/htmlcov/z_079cb04380c5d241_normalize_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -106,7 +106,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_rdf_py.html b/htmlcov/z_079cb04380c5d241_rdf_py.html
index 43dc911d0..80b5bec3c 100644
--- a/htmlcov/z_079cb04380c5d241_rdf_py.html
+++ b/htmlcov/z_079cb04380c5d241_rdf_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -170,7 +170,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_settings_py.html b/htmlcov/z_079cb04380c5d241_settings_py.html
index 4b39bf049..1ff48fd91 100644
--- a/htmlcov/z_079cb04380c5d241_settings_py.html
+++ b/htmlcov/z_079cb04380c5d241_settings_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -129,7 +129,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_test_DateParser_py.html b/htmlcov/z_079cb04380c5d241_test_DateParser_py.html
index a3fa30afb..bc9aefff9 100644
--- a/htmlcov/z_079cb04380c5d241_test_DateParser_py.html
+++ b/htmlcov/z_079cb04380c5d241_test_DateParser_py.html
@@ -54,8 +54,8 @@
- 18 statements
- 18 run
+ 14 statements
+ 14 run
0 missing
0 excluded
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -87,7 +87,7 @@
5
6 from django . test import TestCase
7
- 8 from . DateParser import get_date_help_text_from_dates , parse_date
+ 8 from . DateParser import parse_date
9
10 help_text_default = "Dates are interpreted by defined rules. If this fails, an iso-date can be explicitly set with '<YYYY-MM-DD>'."
11
@@ -98,42 +98,34 @@
16
17
18 # a dict of dates with the written date as key
- 19 # followed by a tuple of (single, start, end, help_text)
+ 19 # followed by a tuple of (single, start, end)
20 dates = {
21 "vor dem 23.10.1449 <1449-10-23>" : (
22 fi ( "1449-10-23" ) ,
23 None ,
24 None ,
- 25 "Date interpreted as 1449-10-23" ,
- 26 ) ,
- 27 "1459-12" : (
- 28 fi ( "1459-12-16" ) ,
- 29 fi ( "1459-12-01" ) ,
- 30 fi ( "1459-12-31" ) ,
- 31 "Date interpreted as 1459-12-1 until 1459-12-31" ,
- 32 ) ,
- 33 "1460-03-30" : ( fi ( "1460-03-30" ) , None , None , "Date interpreted as 1460-3-30" ) ,
- 34 "" : (
+ 25 ) ,
+ 26 "1459-12" : (
+ 27 fi ( "1459-12-16" ) ,
+ 28 fi ( "1459-12-01" ) ,
+ 29 fi ( "1459-12-31" ) ,
+ 30 ) ,
+ 31 "1460-03-30" : ( fi ( "1460-03-30" ) , None , None ) ,
+ 32 "" : (
+ 33 None ,
+ 34 None ,
35 None ,
- 36 None ,
- 37 None ,
- 38 "<b>Date could not be interpreted</b><br>" + help_text_default ,
- 39 ) ,
- 40 }
- 41
- 42
- 43 class DateParserTest ( TestCase ) :
- 44 def test_dates ( self ) :
- 45 for datestring , ( expsingle , expstart , expend , help_text ) in dates . items ( ) :
- 46 single , start , end = parse_date ( datestring )
- 47 self . assertEqual ( expsingle , single )
- 48 self . assertEqual ( expstart , start )
- 49 self . assertEqual ( expend , end )
- 50
- 51 def test_help_text ( self ) :
- 52 for datestring , ( single , start , end , exp_help_text ) in dates . items ( ) :
- 53 help_text = get_date_help_text_from_dates ( single , start , end , datestring )
- 54 self . assertEqual ( exp_help_text , help_text )
+ 36 ) ,
+ 37 }
+ 38
+ 39
+ 40 class DateParserTest ( TestCase ) :
+ 41 def test_dates ( self ) :
+ 42 for datestring , ( expsingle , expstart , expend ) in dates . items ( ) :
+ 43 single , start , end = parse_date ( datestring )
+ 44 self . assertEqual ( expsingle , single )
+ 45 self . assertEqual ( expstart , start )
+ 46 self . assertEqual ( expend , end )
diff --git a/htmlcov/z_079cb04380c5d241_test_helpers_py.html b/htmlcov/z_079cb04380c5d241_test_helpers_py.html
index 1a54daa17..4891f372f 100644
--- a/htmlcov/z_079cb04380c5d241_test_helpers_py.html
+++ b/htmlcov/z_079cb04380c5d241_test_helpers_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -109,7 +109,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_test_normalize_py.html b/htmlcov/z_079cb04380c5d241_test_normalize_py.html
index 85d106c5e..9b36a3278 100644
--- a/htmlcov/z_079cb04380c5d241_test_normalize_py.html
+++ b/htmlcov/z_079cb04380c5d241_test_normalize_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -112,7 +112,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_079cb04380c5d241_test_rdf_py.html b/htmlcov/z_079cb04380c5d241_test_rdf_py.html
index 069cda2b9..64672455c 100644
--- a/htmlcov/z_079cb04380c5d241_test_rdf_py.html
+++ b/htmlcov/z_079cb04380c5d241_test_rdf_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -181,7 +181,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_0b6d599bfac90e15___init___py.html b/htmlcov/z_0b6d599bfac90e15___init___py.html
index 430e99de3..408dfc085 100644
--- a/htmlcov/z_0b6d599bfac90e15___init___py.html
+++ b/htmlcov/z_0b6d599bfac90e15___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_0b6d599bfac90e15_test_simple_history_py.html b/htmlcov/z_0b6d599bfac90e15_test_simple_history_py.html
index 652248c88..9b1174466 100644
--- a/htmlcov/z_0b6d599bfac90e15_test_simple_history_py.html
+++ b/htmlcov/z_0b6d599bfac90e15_test_simple_history_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -221,7 +221,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c___init___py.html b/htmlcov/z_18f121dc3730a25c___init___py.html
index 1526dbf79..a8462001d 100644
--- a/htmlcov/z_18f121dc3730a25c___init___py.html
+++ b/htmlcov/z_18f121dc3730a25c___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_api_views_py.html b/htmlcov/z_18f121dc3730a25c_api_views_py.html
index 7e4713015..ac5d328e9 100644
--- a/htmlcov/z_18f121dc3730a25c_api_views_py.html
+++ b/htmlcov/z_18f121dc3730a25c_api_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -113,7 +113,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_apps_py.html b/htmlcov/z_18f121dc3730a25c_apps_py.html
index 500fe1eb2..a36cd82fd 100644
--- a/htmlcov/z_18f121dc3730a25c_apps_py.html
+++ b/htmlcov/z_18f121dc3730a25c_apps_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -94,7 +94,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_models_py.html b/htmlcov/z_18f121dc3730a25c_models_py.html
index 02abfb7bc..f6018d5f5 100644
--- a/htmlcov/z_18f121dc3730a25c_models_py.html
+++ b/htmlcov/z_18f121dc3730a25c_models_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -307,7 +307,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_serializers_py.html b/htmlcov/z_18f121dc3730a25c_serializers_py.html
index f00889c99..8aa769b17 100644
--- a/htmlcov/z_18f121dc3730a25c_serializers_py.html
+++ b/htmlcov/z_18f121dc3730a25c_serializers_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -183,7 +183,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_tables_py.html b/htmlcov/z_18f121dc3730a25c_tables_py.html
index b51de7fea..8d4c00fef 100644
--- a/htmlcov/z_18f121dc3730a25c_tables_py.html
+++ b/htmlcov/z_18f121dc3730a25c_tables_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -144,7 +144,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_urls_py.html b/htmlcov/z_18f121dc3730a25c_urls_py.html
index 1498270d7..d4facd62e 100644
--- a/htmlcov/z_18f121dc3730a25c_urls_py.html
+++ b/htmlcov/z_18f121dc3730a25c_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -122,7 +122,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_utils_py.html b/htmlcov/z_18f121dc3730a25c_utils_py.html
index b0eb60e99..5a4c91e4c 100644
--- a/htmlcov/z_18f121dc3730a25c_utils_py.html
+++ b/htmlcov/z_18f121dc3730a25c_utils_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -150,7 +150,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_18f121dc3730a25c_views_py.html b/htmlcov/z_18f121dc3730a25c_views_py.html
index ef3652712..5121e6901 100644
--- a/htmlcov/z_18f121dc3730a25c_views_py.html
+++ b/htmlcov/z_18f121dc3730a25c_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -143,7 +143,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_210622b261945b4b_core_py.html b/htmlcov/z_210622b261945b4b_core_py.html
index 670ab4231..f20c7a274 100644
--- a/htmlcov/z_210622b261945b4b_core_py.html
+++ b/htmlcov/z_210622b261945b4b_core_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -143,7 +143,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2117b3d262c5684b_urls_py.html b/htmlcov/z_2117b3d262c5684b_urls_py.html
index c00b75341..c344b4d09 100644
--- a/htmlcov/z_2117b3d262c5684b_urls_py.html
+++ b/htmlcov/z_2117b3d262c5684b_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -96,7 +96,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2117b3d262c5684b_utils_py.html b/htmlcov/z_2117b3d262c5684b_utils_py.html
index f7797e8a3..60745f36a 100644
--- a/htmlcov/z_2117b3d262c5684b_utils_py.html
+++ b/htmlcov/z_2117b3d262c5684b_utils_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -159,7 +159,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2117b3d262c5684b_views_py.html b/htmlcov/z_2117b3d262c5684b_views_py.html
index e4ee8e1a6..bc0ad727f 100644
--- a/htmlcov/z_2117b3d262c5684b_views_py.html
+++ b/htmlcov/z_2117b3d262c5684b_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -101,7 +101,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2c9c277fca33aa93___init___py.html b/htmlcov/z_2c9c277fca33aa93___init___py.html
index 5368d32a2..37d608150 100644
--- a/htmlcov/z_2c9c277fca33aa93___init___py.html
+++ b/htmlcov/z_2c9c277fca33aa93___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -90,7 +90,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2c9c277fca33aa93_urls_py.html b/htmlcov/z_2c9c277fca33aa93_urls_py.html
index deaf1c8ba..5b1ec75d0 100644
--- a/htmlcov/z_2c9c277fca33aa93_urls_py.html
+++ b/htmlcov/z_2c9c277fca33aa93_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -164,7 +164,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_2d258017742203c3_generic_py.html b/htmlcov/z_2d258017742203c3_generic_py.html
index 0732d3366..fb5e476a4 100644
--- a/htmlcov/z_2d258017742203c3_generic_py.html
+++ b/htmlcov/z_2d258017742203c3_generic_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -168,7 +168,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_38054c303eea2897_history_py.html b/htmlcov/z_38054c303eea2897_history_py.html
index 3371c3bf6..70168762f 100644
--- a/htmlcov/z_38054c303eea2897_history_py.html
+++ b/htmlcov/z_38054c303eea2897_history_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -119,7 +119,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4___init___py.html b/htmlcov/z_3eb2033f4386aef4___init___py.html
index 7d55695d0..6a684aad6 100644
--- a/htmlcov/z_3eb2033f4386aef4___init___py.html
+++ b/htmlcov/z_3eb2033f4386aef4___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_apps_py.html b/htmlcov/z_3eb2033f4386aef4_apps_py.html
index 2814cb88c..d582fbf3c 100644
--- a/htmlcov/z_3eb2033f4386aef4_apps_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_apps_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -95,7 +95,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_forms_py.html b/htmlcov/z_3eb2033f4386aef4_forms_py.html
index f0927dbeb..7b828b5dd 100644
--- a/htmlcov/z_3eb2033f4386aef4_forms_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_forms_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -98,7 +98,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_models_py.html b/htmlcov/z_3eb2033f4386aef4_models_py.html
index 304bf594f..acd1e3245 100644
--- a/htmlcov/z_3eb2033f4386aef4_models_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_models_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -151,7 +151,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_querysets_py.html b/htmlcov/z_3eb2033f4386aef4_querysets_py.html
index 114ddaebe..c7b8afc80 100644
--- a/htmlcov/z_3eb2033f4386aef4_querysets_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_querysets_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -131,7 +131,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_settings_loaddata_py.html b/htmlcov/z_3eb2033f4386aef4_settings_loaddata_py.html
index 72ece8c1e..2c8385d18 100644
--- a/htmlcov/z_3eb2033f4386aef4_settings_loaddata_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_settings_loaddata_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -94,7 +94,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_settings_py.html b/htmlcov/z_3eb2033f4386aef4_settings_py.html
index 2e4b0b036..8c3dde058 100644
--- a/htmlcov/z_3eb2033f4386aef4_settings_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_settings_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -223,7 +223,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_settings_tests_py.html b/htmlcov/z_3eb2033f4386aef4_settings_tests_py.html
index 6134aa4d4..4acc16366 100644
--- a/htmlcov/z_3eb2033f4386aef4_settings_tests_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_settings_tests_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -92,7 +92,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_tables_py.html b/htmlcov/z_3eb2033f4386aef4_tables_py.html
index e5501d8b3..8737ce786 100644
--- a/htmlcov/z_3eb2033f4386aef4_tables_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_tables_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -103,7 +103,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_3eb2033f4386aef4_urls_py.html b/htmlcov/z_3eb2033f4386aef4_urls_py.html
index bab51eee6..2f487a98e 100644
--- a/htmlcov/z_3eb2033f4386aef4_urls_py.html
+++ b/htmlcov/z_3eb2033f4386aef4_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -99,7 +99,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a___init___py.html b/htmlcov/z_49ff5da25a66209a___init___py.html
index 761f8370b..6d26f643c 100644
--- a/htmlcov/z_49ff5da25a66209a___init___py.html
+++ b/htmlcov/z_49ff5da25a66209a___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_admin_py.html b/htmlcov/z_49ff5da25a66209a_admin_py.html
index 5ad29a879..653554f03 100644
--- a/htmlcov/z_49ff5da25a66209a_admin_py.html
+++ b/htmlcov/z_49ff5da25a66209a_admin_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -94,7 +94,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_apps_py.html b/htmlcov/z_49ff5da25a66209a_apps_py.html
index c46c00855..21dfdf21f 100644
--- a/htmlcov/z_49ff5da25a66209a_apps_py.html
+++ b/htmlcov/z_49ff5da25a66209a_apps_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -106,7 +106,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_filtersets_py.html b/htmlcov/z_49ff5da25a66209a_filtersets_py.html
index fa332fa60..423e3a317 100644
--- a/htmlcov/z_49ff5da25a66209a_filtersets_py.html
+++ b/htmlcov/z_49ff5da25a66209a_filtersets_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -99,7 +99,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_forms_py.html b/htmlcov/z_49ff5da25a66209a_forms_py.html
index 15ba7c855..7d9cb6c94 100644
--- a/htmlcov/z_49ff5da25a66209a_forms_py.html
+++ b/htmlcov/z_49ff5da25a66209a_forms_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -98,7 +98,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_models_py.html b/htmlcov/z_49ff5da25a66209a_models_py.html
index 4ffafc8a4..f6ecc7c7a 100644
--- a/htmlcov/z_49ff5da25a66209a_models_py.html
+++ b/htmlcov/z_49ff5da25a66209a_models_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -206,7 +206,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_serializers_py.html b/htmlcov/z_49ff5da25a66209a_serializers_py.html
index 312a2ef25..bd6204b63 100644
--- a/htmlcov/z_49ff5da25a66209a_serializers_py.html
+++ b/htmlcov/z_49ff5da25a66209a_serializers_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -104,7 +104,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_tables_py.html b/htmlcov/z_49ff5da25a66209a_tables_py.html
index 32f300310..371b67f45 100644
--- a/htmlcov/z_49ff5da25a66209a_tables_py.html
+++ b/htmlcov/z_49ff5da25a66209a_tables_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -118,7 +118,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_urls_py.html b/htmlcov/z_49ff5da25a66209a_urls_py.html
index 047dd5631..5dc4e2d59 100644
--- a/htmlcov/z_49ff5da25a66209a_urls_py.html
+++ b/htmlcov/z_49ff5da25a66209a_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -96,7 +96,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_49ff5da25a66209a_viewsets_py.html b/htmlcov/z_49ff5da25a66209a_viewsets_py.html
index d0795d864..9bcdd0547 100644
--- a/htmlcov/z_49ff5da25a66209a_viewsets_py.html
+++ b/htmlcov/z_49ff5da25a66209a_viewsets_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -124,7 +124,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887___init___py.html b/htmlcov/z_572d048ccdded887___init___py.html
index 77ee9ef77..cb0d41771 100644
--- a/htmlcov/z_572d048ccdded887___init___py.html
+++ b/htmlcov/z_572d048ccdded887___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_abc_py.html b/htmlcov/z_572d048ccdded887_abc_py.html
index 736f5f32d..b116b3a89 100644
--- a/htmlcov/z_572d048ccdded887_abc_py.html
+++ b/htmlcov/z_572d048ccdded887_abc_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -135,7 +135,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_api_views_py.html b/htmlcov/z_572d048ccdded887_api_views_py.html
index de0abb4f0..d5bab2c2c 100644
--- a/htmlcov/z_572d048ccdded887_api_views_py.html
+++ b/htmlcov/z_572d048ccdded887_api_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -121,7 +121,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_apps_py.html b/htmlcov/z_572d048ccdded887_apps_py.html
index c96799b01..87f991f3b 100644
--- a/htmlcov/z_572d048ccdded887_apps_py.html
+++ b/htmlcov/z_572d048ccdded887_apps_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -94,7 +94,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_autocomplete3_py.html b/htmlcov/z_572d048ccdded887_autocomplete3_py.html
index 94fec5181..b7aa2ad40 100644
--- a/htmlcov/z_572d048ccdded887_autocomplete3_py.html
+++ b/htmlcov/z_572d048ccdded887_autocomplete3_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -157,7 +157,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_fields_py.html b/htmlcov/z_572d048ccdded887_fields_py.html
index 688670b28..0c5d500fd 100644
--- a/htmlcov/z_572d048ccdded887_fields_py.html
+++ b/htmlcov/z_572d048ccdded887_fields_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -164,7 +164,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_filtersets_py.html b/htmlcov/z_572d048ccdded887_filtersets_py.html
index e69464448..2802db69e 100644
--- a/htmlcov/z_572d048ccdded887_filtersets_py.html
+++ b/htmlcov/z_572d048ccdded887_filtersets_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -193,7 +193,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_models_py.html b/htmlcov/z_572d048ccdded887_models_py.html
index 730a3f0a3..dce6de7be 100644
--- a/htmlcov/z_572d048ccdded887_models_py.html
+++ b/htmlcov/z_572d048ccdded887_models_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -194,7 +194,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_serializers_py.html b/htmlcov/z_572d048ccdded887_serializers_py.html
index a9b9b1c63..203bd7c0f 100644
--- a/htmlcov/z_572d048ccdded887_serializers_py.html
+++ b/htmlcov/z_572d048ccdded887_serializers_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -102,7 +102,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_tables_py.html b/htmlcov/z_572d048ccdded887_tables_py.html
index d65157925..8cce0a96d 100644
--- a/htmlcov/z_572d048ccdded887_tables_py.html
+++ b/htmlcov/z_572d048ccdded887_tables_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -106,7 +106,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_urls_py.html b/htmlcov/z_572d048ccdded887_urls_py.html
index cc2a7e5dc..d2f25b69a 100644
--- a/htmlcov/z_572d048ccdded887_urls_py.html
+++ b/htmlcov/z_572d048ccdded887_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -160,7 +160,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_utils_py.html b/htmlcov/z_572d048ccdded887_utils_py.html
index f74e98c18..1788860b5 100644
--- a/htmlcov/z_572d048ccdded887_utils_py.html
+++ b/htmlcov/z_572d048ccdded887_utils_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -101,7 +101,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_572d048ccdded887_views_py.html b/htmlcov/z_572d048ccdded887_views_py.html
index 1b8fee3b5..50cbe5fa6 100644
--- a/htmlcov/z_572d048ccdded887_views_py.html
+++ b/htmlcov/z_572d048ccdded887_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -161,7 +161,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0001_initial_py.html b/htmlcov/z_5d8b244af5c2277b_0001_initial_py.html
index 1391edb4c..8611cb321 100644
--- a/htmlcov/z_5d8b244af5c2277b_0001_initial_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0001_initial_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -247,7 +247,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0002_property_property_class_uri_py.html b/htmlcov/z_5d8b244af5c2277b_0002_property_property_class_uri_py.html
index d927e77ec..bcba09d4c 100644
--- a/htmlcov/z_5d8b244af5c2277b_0002_property_property_class_uri_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0002_property_property_class_uri_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -108,7 +108,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html b/htmlcov/z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html
index bebde32c0..b078b154f 100644
--- a/htmlcov/z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0003_auto_20230123_1715_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -105,7 +105,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html b/htmlcov/z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html
index c91b1110b..9cdbeb118 100644
--- a/htmlcov/z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0004_auto_20230124_1201_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -151,7 +151,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html b/htmlcov/z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html
index e1d60d2c8..b0dc8f7f1 100644
--- a/htmlcov/z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0005_alter_property_obj_class_alter_property_subj_class_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -116,7 +116,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0006_versiontemptriple_py.html b/htmlcov/z_5d8b244af5c2277b_0006_versiontemptriple_py.html
index 9ee9493bd..9091947b2 100644
--- a/htmlcov/z_5d8b244af5c2277b_0006_versiontemptriple_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0006_versiontemptriple_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -231,7 +231,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html b/htmlcov/z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html
index 341c0049b..b592e3504 100644
--- a/htmlcov/z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html
+++ b/htmlcov/z_5d8b244af5c2277b_0007_alter_versiontemptriple_options_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -110,7 +110,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_5d8b244af5c2277b___init___py.html b/htmlcov/z_5d8b244af5c2277b___init___py.html
index 360437344..50feae0f4 100644
--- a/htmlcov/z_5d8b244af5c2277b___init___py.html
+++ b/htmlcov/z_5d8b244af5c2277b___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537___init___py.html b/htmlcov/z_73d20026d8cfd537___init___py.html
index 1fffe21e5..df27d921a 100644
--- a/htmlcov/z_73d20026d8cfd537___init___py.html
+++ b/htmlcov/z_73d20026d8cfd537___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_admin_py.html b/htmlcov/z_73d20026d8cfd537_admin_py.html
index 74a02f303..21dfa0a9d 100644
--- a/htmlcov/z_73d20026d8cfd537_admin_py.html
+++ b/htmlcov/z_73d20026d8cfd537_admin_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -95,7 +95,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_apps_py.html b/htmlcov/z_73d20026d8cfd537_apps_py.html
index 536f6f46b..559e9a2a5 100644
--- a/htmlcov/z_73d20026d8cfd537_apps_py.html
+++ b/htmlcov/z_73d20026d8cfd537_apps_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -98,7 +98,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_models_py.html b/htmlcov/z_73d20026d8cfd537_models_py.html
index a000b41a5..2f371a17b 100644
--- a/htmlcov/z_73d20026d8cfd537_models_py.html
+++ b/htmlcov/z_73d20026d8cfd537_models_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -195,7 +195,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_signals_py.html b/htmlcov/z_73d20026d8cfd537_signals_py.html
index 4d5ecf0b6..23e720950 100644
--- a/htmlcov/z_73d20026d8cfd537_signals_py.html
+++ b/htmlcov/z_73d20026d8cfd537_signals_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -120,7 +120,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_tables_py.html b/htmlcov/z_73d20026d8cfd537_tables_py.html
index 2fffc249e..68640ffd8 100644
--- a/htmlcov/z_73d20026d8cfd537_tables_py.html
+++ b/htmlcov/z_73d20026d8cfd537_tables_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -99,7 +99,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_urls_py.html b/htmlcov/z_73d20026d8cfd537_urls_py.html
index f4f6fc575..b0de9ed8a 100644
--- a/htmlcov/z_73d20026d8cfd537_urls_py.html
+++ b/htmlcov/z_73d20026d8cfd537_urls_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -112,7 +112,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_73d20026d8cfd537_views_py.html b/htmlcov/z_73d20026d8cfd537_views_py.html
index 5c7e0b730..c6e06654f 100644
--- a/htmlcov/z_73d20026d8cfd537_views_py.html
+++ b/htmlcov/z_73d20026d8cfd537_views_py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -199,7 +199,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_742a021fcfacff1d___init___py.html b/htmlcov/z_742a021fcfacff1d___init___py.html
index ef2631895..460394643 100644
--- a/htmlcov/z_742a021fcfacff1d___init___py.html
+++ b/htmlcov/z_742a021fcfacff1d___init___py.html
@@ -65,7 +65,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
@@ -89,7 +89,7 @@
» next
coverage.py v7.6.8 ,
- created at 2024-12-17 09:35 +0000
+ created at 2024-12-17 09:43 +0000
diff --git a/htmlcov/z_742a021fcfacff1d_admin_py.html b/htmlcov/z_742a021fcfacff1d_admin_py.html
index c08998820..b899f1ce0 100644
--- a/htmlcov/z_742a021fcfacff1d_admin_py.html
+++ b/htmlcov/z_742a021fcfacff1d_admin_py.html
@@ -65,7 +65,7 @@