├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .ignore ├── .nvmrc ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── conftest.py ├── package.json ├── pyproject.toml ├── rdmo ├── __init__.py ├── __main__.py ├── accounts │ ├── __init__.py │ ├── account.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_detail_key_type_field_length_increased.py │ │ ├── 0003_hint_renamed_to_help_text.py │ │ ├── 0004_permission_added.py │ │ ├── 0005_field_type.py │ │ ├── 0006_permissions_removed.py │ │ ├── 0007_additional_fields.py │ │ ├── 0008_related_name.py │ │ ├── 0009_proxyuser.py │ │ ├── 0010_consentfieldvalue.py │ │ ├── 0011_rename_en_to_lang1.py │ │ ├── 0012_rename_de_to_lang2.py │ │ ├── 0013_meta.py │ │ ├── 0014_add_language_fields.py │ │ ├── 0015_data_migration.py │ │ ├── 0016_remove_null_true.py │ │ ├── 0017_role.py │ │ ├── 0018_blank_fields.py │ │ ├── 0019_delete_proxyuser.py │ │ ├── 0020_add_role_editor_and_reviewer.py │ │ ├── 0021_alter_help_text.py │ │ ├── 0022_add_created_updated_to_consent.py │ │ └── __init__.py │ ├── models.py │ ├── serializers │ │ ├── __init__.py │ │ └── v1.py │ ├── settings.py │ ├── socialaccount.py │ ├── static │ │ └── accounts │ │ │ └── img │ │ │ ├── keycloak_logo_200px.svg │ │ │ ├── orcid-signin.png │ │ │ └── orcid_16x16.png │ ├── templates │ │ ├── account │ │ │ ├── account_token.html │ │ │ ├── email.html │ │ │ ├── email │ │ │ │ ├── password_reset_key_message.txt │ │ │ │ └── password_reset_key_subject.txt │ │ │ ├── email_confirm.html │ │ │ ├── login.html │ │ │ ├── login_form.html │ │ │ ├── login_form_account.html │ │ │ ├── login_form_socialaccount.html │ │ │ ├── logout.html │ │ │ ├── logout_form.html │ │ │ ├── password_change.html │ │ │ ├── password_reset.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_from_key.html │ │ │ ├── password_reset_from_key_done.html │ │ │ ├── password_set.html │ │ │ ├── signup.html │ │ │ ├── signup_closed.html │ │ │ ├── signup_modal_terms_of_use.html │ │ │ ├── terms_of_use.html │ │ │ ├── terms_of_use_accept_form.html │ │ │ ├── terms_of_use_de.html │ │ │ ├── terms_of_use_en.html │ │ │ ├── verification_sent.html │ │ │ └── verified_email_required.html │ │ ├── profile │ │ │ ├── profile_remove_closed.html │ │ │ ├── profile_remove_failed.html │ │ │ ├── profile_remove_form.html │ │ │ ├── profile_remove_success.html │ │ │ ├── profile_update_closed.html │ │ │ └── profile_update_form.html │ │ └── socialaccount │ │ │ ├── authentication_error.html │ │ │ ├── connections.html │ │ │ ├── login.html │ │ │ ├── login_cancelled.html │ │ │ ├── signup.html │ │ │ └── snippets │ │ │ └── provider_list.html │ ├── templatetags │ │ ├── __init__.py │ │ └── accounts_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── test_admin.py │ │ ├── test_utils.py │ │ ├── test_views.py │ │ ├── test_views_socialaccount.py │ │ └── test_viewsets.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── utils.py │ ├── views.py │ └── viewsets.py ├── conditions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── imports.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_many_to_many_for_conditions.py │ │ ├── 0003_meta.py │ │ ├── 0004_condition_title.py │ │ ├── 0005_empty_relation.py │ │ ├── 0006_db_constraint_false.py │ │ ├── 0007_ordering.py │ │ ├── 0008_validator.py │ │ ├── 0009_options.py │ │ ├── 0010_refactoring.py │ │ ├── 0011_refactoring.py │ │ ├── 0012_permissions.py │ │ ├── 0013_meta.py │ │ ├── 0014_meta.py │ │ ├── 0015_move_attribute_to_attributeentity.py │ │ ├── 0016_meta.py │ │ ├── 0017_data_migration.py │ │ ├── 0018_remove_null_true.py │ │ ├── 0019_django2.py │ │ ├── 0020_require_uri_prefix.py │ │ ├── 0021_related_name.py │ │ ├── 0022_condition_locked.py │ │ ├── 0023_condition_editors.py │ │ ├── 0024_uri_path.py │ │ ├── 0025_alter_condition_uri_path.py │ │ └── __init__.py │ ├── models.py │ ├── renderers │ │ ├── __init__.py │ │ └── mixins.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1.py │ ├── templates │ │ └── conditions │ │ │ └── export │ │ │ └── conditions.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_models.py │ │ ├── test_validator_locked.py │ │ ├── test_validator_unique_uri.py │ │ ├── test_viewset_condition.py │ │ ├── test_viewset_condition_multisite.py │ │ └── test_viewset_relation.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── validators.py │ └── viewsets.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── assets │ │ ├── fonts │ │ │ ├── DroidSans-Bold.ttf │ │ │ ├── DroidSans.ttf │ │ │ ├── DroidSansMono.ttf │ │ │ ├── DroidSerif-Bold.ttf │ │ │ ├── DroidSerif-BoldItalic.ttf │ │ │ ├── DroidSerif-Italic.ttf │ │ │ └── DroidSerif.ttf │ │ ├── img │ │ │ ├── favicon.png │ │ │ └── rdmo-logo.svg │ │ ├── js │ │ │ ├── actions │ │ │ │ ├── actionTypes.js │ │ │ │ ├── configActions.js │ │ │ │ ├── pendingActions.js │ │ │ │ ├── settingsActions.js │ │ │ │ ├── templateActions.js │ │ │ │ └── userActions.js │ │ │ ├── api │ │ │ │ ├── AccountsApi.js │ │ │ │ ├── BaseApi.js │ │ │ │ └── CoreApi.js │ │ │ ├── base.js │ │ │ ├── components │ │ │ │ ├── FileUploadButton.js │ │ │ │ ├── Html.js │ │ │ │ ├── Link.js │ │ │ │ ├── LinkButton.js │ │ │ │ ├── Modal.js │ │ │ │ ├── SearchField.js │ │ │ │ ├── Select.js │ │ │ │ ├── UploadDropZone.js │ │ │ │ └── index.js │ │ │ ├── containers │ │ │ │ └── Pending.js │ │ │ ├── hooks │ │ │ │ ├── index.js │ │ │ │ ├── useFormattedDateTime.js │ │ │ │ ├── useLsState.js │ │ │ │ ├── useModal.js │ │ │ │ └── useScrollToTop.js │ │ │ ├── reducers │ │ │ │ ├── configReducer.js │ │ │ │ ├── pendingReducer.js │ │ │ │ ├── settingsReducer.js │ │ │ │ ├── templateReducer.js │ │ │ │ └── userReducer.js │ │ │ └── utils │ │ │ │ ├── api.js │ │ │ │ ├── config.js │ │ │ │ ├── index.js │ │ │ │ ├── lang.js │ │ │ │ ├── meta.js │ │ │ │ └── store.js │ │ └── scss │ │ │ ├── base.scss │ │ │ ├── utils.scss │ │ │ └── variables.scss │ ├── checks.py │ ├── constants.py │ ├── exceptions.py │ ├── exports.py │ ├── filters.py │ ├── import_helpers.py │ ├── imports.py │ ├── mail.py │ ├── management │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── clean.py │ │ │ ├── create_admin_user.py │ │ │ ├── delete_users.py │ │ │ ├── deploy.py │ │ │ ├── find_inactive_users.py │ │ │ ├── find_spam_users.py │ │ │ ├── find_users.py │ │ │ ├── make_theme.py │ │ │ ├── messages.py │ │ │ ├── npm.py │ │ │ ├── poedit.py │ │ │ ├── set_uri_prefix.py │ │ │ ├── setup_groups.py │ │ │ └── upgrade.py │ │ └── settings.py │ ├── managers.py │ ├── models.py │ ├── pandoc.py │ ├── permissions.py │ ├── plugins.py │ ├── renderers.py │ ├── schema.py │ ├── serializers.py │ ├── settings.py │ ├── static │ │ └── core │ │ │ ├── css │ │ │ ├── base.scss │ │ │ ├── fonts.scss │ │ │ ├── footer.scss │ │ │ ├── header.scss │ │ │ ├── style.scss │ │ │ ├── utils.scss │ │ │ └── variables.scss │ │ │ ├── img │ │ │ ├── favicon.png │ │ │ ├── header │ │ │ │ ├── collection.jpg │ │ │ │ ├── library.jpg │ │ │ │ └── supercomputer.jpg │ │ │ ├── rdmo-logo.png │ │ │ └── rdmo-logo.svg │ │ │ └── js │ │ │ ├── header.js │ │ │ └── utils.js │ ├── templates │ │ └── core │ │ │ ├── 400.html │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ ├── 500.html │ │ │ ├── about.html │ │ │ ├── about_text_de.html │ │ │ ├── about_text_en.html │ │ │ ├── about_text_es.html │ │ │ ├── about_text_fr.html │ │ │ ├── about_text_it.html │ │ │ ├── api.html │ │ │ ├── back_to_project_link.html │ │ │ ├── base.html │ │ │ ├── base_analytics.html │ │ │ ├── base_footer.html │ │ │ ├── base_head.html │ │ │ ├── base_navigation.html │ │ │ ├── base_navigation_account.html │ │ │ ├── base_navigation_socialaccount.html │ │ │ ├── bootstrap_delete_form.html │ │ │ ├── bootstrap_form.html │ │ │ ├── bootstrap_form_field.html │ │ │ ├── bootstrap_form_fields.html │ │ │ ├── error.html │ │ │ ├── export.html │ │ │ ├── footer_text_de.html │ │ │ ├── footer_text_en.html │ │ │ ├── footer_text_es.html │ │ │ ├── footer_text_fr.html │ │ │ ├── footer_text_it.html │ │ │ ├── home.html │ │ │ ├── home_text_de.html │ │ │ ├── home_text_en.html │ │ │ ├── home_text_es.html │ │ │ ├── home_text_fr.html │ │ │ ├── home_text_it.html │ │ │ ├── page.html │ │ │ ├── projects_page.html │ │ │ └── upload_form.html │ ├── templatetags │ │ ├── __init__.py │ │ └── core_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── e2e │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ ├── test_mail.py │ │ ├── test_models.py │ │ ├── test_openapi.py │ │ ├── test_package_status.py │ │ ├── test_pandoc.py │ │ ├── test_renderers.py │ │ ├── test_tags.py │ │ ├── test_utils.py │ │ ├── test_validators.py │ │ ├── test_views.py │ │ ├── test_viewset_groups.py │ │ ├── test_viewset_settings.py │ │ ├── test_viewset_sites.py │ │ ├── test_viewset_templates.py │ │ ├── test_xml.py │ │ └── utils.py │ ├── urls │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ └── openapi.py │ ├── utils.py │ ├── validators.py │ ├── views.py │ ├── viewsets.py │ └── xml.py ├── domain │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── imports.py │ ├── migrations │ │ ├── 0001_initial_after_reset.py │ │ ├── 0002_additional_input.py │ │ ├── 0003_condition.py │ │ ├── 0004_verbosename.py │ │ ├── 0005_meta.py │ │ ├── 0006_attributeentity_parent_collection.py │ │ ├── 0007_db_index.py │ │ ├── 0008_meta.py │ │ ├── 0009_remove_condition.py │ │ ├── 0010_many_to_many_for_conditions.py │ │ ├── 0011_meta.py │ │ ├── 0012_renaming.py │ │ ├── 0013_mptt.py │ │ ├── 0014_is_attribute.py │ │ ├── 0015_label.py │ │ ├── 0016_label.py │ │ ├── 0017_url_value_type.py │ │ ├── 0018_validator.py │ │ ├── 0019_meta.py │ │ ├── 0020_meta.py │ │ ├── 0021_options.py │ │ ├── 0022_options.py │ │ ├── 0023_fix_label.py │ │ ├── 0024_meta.py │ │ ├── 0025_refactoring.py │ │ ├── 0026_refactoring.py │ │ ├── 0027_meta.py │ │ ├── 0028_path.py │ │ ├── 0029_meta.py │ │ ├── 0030_permissions.py │ │ ├── 0031_meta.py │ │ ├── 0032_remove_unit_and_type.py │ │ ├── 0033_remove_attribute_optionsets.py │ │ ├── 0034_remove_attributeentity_conditions.py │ │ ├── 0035_remove_is_collection_and_parent_collection.py │ │ ├── 0036_remove_range_and_verbosename.py │ │ ├── 0037_remove_attribute.py │ │ ├── 0038_rename_attributeentity_to_attribute.py │ │ ├── 0039_meta.py │ │ ├── 0040_meta.py │ │ ├── 0041_data_migration.py │ │ ├── 0042_remove_null_true.py │ │ ├── 0043_django2.py │ │ ├── 0044_mptt.py │ │ ├── 0045_require_uri_prefix.py │ │ ├── 0046_parent_cascade.py │ │ ├── 0047_attribute_locked.py │ │ ├── 0048_meta.py │ │ ├── 0049_attribute_add_editors.py │ │ └── __init__.py │ ├── models.py │ ├── renderers │ │ ├── __init__.py │ │ └── mixins.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1.py │ ├── templates │ │ └── domain │ │ │ └── export │ │ │ └── attributes.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_models.py │ │ ├── test_validator_locked.py │ │ ├── test_validator_parent.py │ │ ├── test_validator_unique_uri.py │ │ ├── test_viewset_attribute.py │ │ └── test_viewset_attribute_multisite.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── validators.py │ └── viewsets.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po ├── management │ ├── __init__.py │ ├── apps.py │ ├── assets │ │ ├── js │ │ │ ├── actions │ │ │ │ ├── elementActions.js │ │ │ │ └── importActions.js │ │ │ ├── api │ │ │ │ ├── ConditionsApi.js │ │ │ │ ├── DomainApi.js │ │ │ │ ├── ManagementApi.js │ │ │ │ ├── OptionsApi.js │ │ │ │ ├── QuestionsApi.js │ │ │ │ ├── TasksApi.js │ │ │ │ └── ViewsApi.js │ │ │ ├── components │ │ │ │ ├── common │ │ │ │ │ ├── Buttons.js │ │ │ │ │ ├── Checkboxes.js │ │ │ │ │ ├── DragAndDrop.js │ │ │ │ │ ├── Errors.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Forms.js │ │ │ │ │ ├── Icons.js │ │ │ │ │ ├── Labels.js │ │ │ │ │ ├── Links.js │ │ │ │ │ └── Modals.js │ │ │ │ ├── edit │ │ │ │ │ ├── EditAttribute.js │ │ │ │ │ ├── EditCatalog.js │ │ │ │ │ ├── EditCondition.js │ │ │ │ │ ├── EditOption.js │ │ │ │ │ ├── EditOptionSet.js │ │ │ │ │ ├── EditPage.js │ │ │ │ │ ├── EditQuestion.js │ │ │ │ │ ├── EditQuestionSet.js │ │ │ │ │ ├── EditSection.js │ │ │ │ │ ├── EditTask.js │ │ │ │ │ ├── EditView.js │ │ │ │ │ └── common │ │ │ │ │ │ ├── Checkbox.js │ │ │ │ │ │ ├── CodeMirror.js │ │ │ │ │ │ ├── MultiSelect.js │ │ │ │ │ │ ├── Number.js │ │ │ │ │ │ ├── OrderedMultiSelect.js │ │ │ │ │ │ ├── Radio.js │ │ │ │ │ │ ├── Select.js │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ ├── Textarea.js │ │ │ │ │ │ └── UriPrefix.js │ │ │ │ ├── element │ │ │ │ │ ├── Attribute.js │ │ │ │ │ ├── Catalog.js │ │ │ │ │ ├── Condition.js │ │ │ │ │ ├── Option.js │ │ │ │ │ ├── OptionSet.js │ │ │ │ │ ├── Page.js │ │ │ │ │ ├── Question.js │ │ │ │ │ ├── QuestionSet.js │ │ │ │ │ ├── Section.js │ │ │ │ │ ├── Task.js │ │ │ │ │ └── View.js │ │ │ │ ├── elements │ │ │ │ │ ├── Attributes.js │ │ │ │ │ ├── Catalogs.js │ │ │ │ │ ├── Conditions.js │ │ │ │ │ ├── OptionSets.js │ │ │ │ │ ├── Options.js │ │ │ │ │ ├── Pages.js │ │ │ │ │ ├── QuestionSets.js │ │ │ │ │ ├── Questions.js │ │ │ │ │ ├── Sections.js │ │ │ │ │ ├── Tasks.js │ │ │ │ │ └── Views.js │ │ │ │ ├── import │ │ │ │ │ ├── ImportAggregatedErrorsPanel.js │ │ │ │ │ ├── ImportAggregatedWarningsPanel.js │ │ │ │ │ ├── ImportElement.js │ │ │ │ │ ├── ImportSuccessElement.js │ │ │ │ │ └── common │ │ │ │ │ │ ├── Errors.js │ │ │ │ │ │ ├── ErrorsListGroup.js │ │ │ │ │ │ ├── FieldRow.js │ │ │ │ │ │ ├── FieldRowDiffs.js │ │ │ │ │ │ ├── FieldRowValue.js │ │ │ │ │ │ ├── Fields.js │ │ │ │ │ │ ├── Form.js │ │ │ │ │ │ ├── ImportFilters.js │ │ │ │ │ │ ├── ImportInfo.js │ │ │ │ │ │ ├── ImportLabels.js │ │ │ │ │ │ ├── ImportSelectCheckbox.js │ │ │ │ │ │ ├── Key.js │ │ │ │ │ │ ├── UriPath.js │ │ │ │ │ │ ├── UriPrefix.js │ │ │ │ │ │ ├── Warnings.js │ │ │ │ │ │ └── WarningsListGroup.js │ │ │ │ ├── info │ │ │ │ │ ├── AttributeInfo.js │ │ │ │ │ ├── CatalogInfo.js │ │ │ │ │ ├── ConditionInfo.js │ │ │ │ │ ├── OptionInfo.js │ │ │ │ │ ├── OptionSetInfo.js │ │ │ │ │ ├── PageInfo.js │ │ │ │ │ ├── QuestionInfo.js │ │ │ │ │ ├── QuestionSetInfo.js │ │ │ │ │ ├── SectionInfo.js │ │ │ │ │ ├── TaskInfo.js │ │ │ │ │ └── ViewInfo.js │ │ │ │ ├── main │ │ │ │ │ ├── Edit.js │ │ │ │ │ ├── Elements.js │ │ │ │ │ ├── Import.js │ │ │ │ │ └── Nested.js │ │ │ │ ├── modals │ │ │ │ │ ├── DeleteAttributeModal.js │ │ │ │ │ ├── DeleteCatalogModal.js │ │ │ │ │ ├── DeleteConditionModal.js │ │ │ │ │ ├── DeleteOptionModal.js │ │ │ │ │ ├── DeleteOptionSetModal.js │ │ │ │ │ ├── DeletePageModal.js │ │ │ │ │ ├── DeleteQuestionModal.js │ │ │ │ │ ├── DeleteQuestionSetModal.js │ │ │ │ │ ├── DeleteSectionModal.js │ │ │ │ │ ├── DeleteTaskModal.js │ │ │ │ │ └── DeleteViewModal.js │ │ │ │ ├── nested │ │ │ │ │ ├── NestedAttribute.js │ │ │ │ │ ├── NestedCatalog.js │ │ │ │ │ ├── NestedOptionSet.js │ │ │ │ │ ├── NestedPage.js │ │ │ │ │ ├── NestedQuestionSet.js │ │ │ │ │ └── NestedSection.js │ │ │ │ └── sidebar │ │ │ │ │ ├── ElementsSidebar.js │ │ │ │ │ └── ImportSidebar.js │ │ │ ├── constants │ │ │ │ └── elements.js │ │ │ ├── containers │ │ │ │ ├── Main.js │ │ │ │ └── Sidebar.js │ │ │ ├── factories │ │ │ │ ├── ConditionsFactory.js │ │ │ │ ├── DomainFactory.js │ │ │ │ ├── OptionsFactory.js │ │ │ │ ├── QuestionsFactory.js │ │ │ │ ├── TasksFactory.js │ │ │ │ └── ViewsFactory.js │ │ │ ├── hooks │ │ │ │ ├── useBool.js │ │ │ │ ├── useDeleteModal.js │ │ │ │ ├── useImportElements.js │ │ │ │ └── useScrollEffect.js │ │ │ ├── management.js │ │ │ ├── reducers │ │ │ │ ├── elementsReducer.js │ │ │ │ └── importsReducer.js │ │ │ ├── store │ │ │ │ └── configureStore.js │ │ │ └── utils │ │ │ │ ├── elements.js │ │ │ │ ├── filter.js │ │ │ │ ├── forms.js │ │ │ │ ├── getDiff.js │ │ │ │ ├── importFilters.js │ │ │ │ ├── location.js │ │ │ │ └── processElementDiffs.js │ │ └── scss │ │ │ └── management.scss │ ├── constants.py │ ├── import_utils.py │ ├── imports.py │ ├── management │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── import.py │ │ │ └── merge_attributes.py │ ├── rules.py │ ├── templates │ │ └── management │ │ │ ├── import.html │ │ │ ├── management.html │ │ │ └── upload.html │ ├── tests │ │ ├── __init__.py │ │ ├── e2e │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── frontend_helpers.py │ │ │ ├── test_frontend_import_options.py │ │ │ ├── test_frontend_import_questions.py │ │ │ ├── test_frontend_management_catalog_copy.py │ │ │ └── test_frontend_management_elements.py │ │ ├── helpers_import_elements.py │ │ ├── helpers_models.py │ │ ├── helpers_xml.py │ │ ├── test_commands.py │ │ ├── test_import_conditions.py │ │ ├── test_import_domain.py │ │ ├── test_import_options.py │ │ ├── test_import_questions.py │ │ ├── test_import_tasks.py │ │ ├── test_import_views.py │ │ ├── test_merge_attributes.py │ │ ├── test_view.py │ │ ├── test_viewset_import.py │ │ ├── test_viewset_import_multisite.py │ │ ├── test_viewset_meta.py │ │ └── test_viewset_upload.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── utils.py │ ├── views.py │ └── viewsets.py ├── options │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── imports.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_meta.py │ │ ├── 0003_data_migration.py │ │ ├── 0004_conditions.py │ │ ├── 0005_refactoring.py │ │ ├── 0006_refactoring.py │ │ ├── 0007_meta.py │ │ ├── 0008_option_path.py │ │ ├── 0009_data_migration.py │ │ ├── 0010_meta.py │ │ ├── 0011_permissions.py │ │ ├── 0012_meta.py │ │ ├── 0013_order.py │ │ ├── 0014_rename_en_to_lang1.py │ │ ├── 0015_rename_de_to_lang2.py │ │ ├── 0016_meta.py │ │ ├── 0017_add_language_fields.py │ │ ├── 0018_data_migration.py │ │ ├── 0019_remove_null_true.py │ │ ├── 0020_django2.py │ │ ├── 0021_data_migrations.py │ │ ├── 0022_cascade_options.py │ │ ├── 0023_require_uri_prefix.py │ │ ├── 0024_related_name.py │ │ ├── 0025_optionset_provider_key.py │ │ ├── 0026_optionset_option_locked.py │ │ ├── 0027_meta.py │ │ ├── 0028_optionset_uri_path.py │ │ ├── 0029_option_uri_path.py │ │ ├── 0030_optionset_options.py │ │ ├── 0031_add_editors.py │ │ ├── 0032_alter_option_additional_input.py │ │ ├── 0033_option_help.py │ │ ├── 0034_option_view_text.py │ │ ├── 0035_alter_help_text_and_set_default.py │ │ ├── 0036_option_default_text.py │ │ └── __init__.py │ ├── models.py │ ├── providers.py │ ├── renderers │ │ ├── __init__.py │ │ └── mixins.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── option.py │ │ │ └── optionset.py │ ├── templates │ │ └── options │ │ │ └── export │ │ │ ├── option.html │ │ │ ├── options.html │ │ │ ├── optionset.html │ │ │ └── optionsets.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_models.py │ │ ├── test_validator_locked_options.py │ │ ├── test_validator_locked_optionsets.py │ │ ├── test_validator_unique_uri_options.py │ │ ├── test_validator_unique_uri_optionsets.py │ │ ├── test_viewset_options.py │ │ ├── test_viewset_options_multisite.py │ │ ├── test_viewset_optionsets.py │ │ └── test_viewset_optionsets_multisite.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── validators.py │ └── viewsets.py ├── overlays │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── overlays │ │ │ ├── css │ │ │ └── overlays.scss │ │ │ └── js │ │ │ └── overlays.js │ ├── templates │ │ └── overlays │ │ │ ├── buttons.html │ │ │ └── reset_overlays.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_views.py │ │ └── test_viewsets.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── views.py │ └── viewsets.py ├── projects │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── assets │ │ ├── js │ │ │ ├── interview.js │ │ │ ├── interview │ │ │ │ ├── actions │ │ │ │ │ ├── actionTypes.js │ │ │ │ │ ├── contactActions.js │ │ │ │ │ ├── interviewActions.js │ │ │ │ │ └── projectActions.js │ │ │ │ ├── api │ │ │ │ │ ├── ContactApi.js │ │ │ │ │ ├── PageApi.js │ │ │ │ │ ├── ProjectApi.js │ │ │ │ │ └── ValueApi.js │ │ │ │ ├── components │ │ │ │ │ ├── main │ │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ │ ├── Contact.js │ │ │ │ │ │ ├── Done.js │ │ │ │ │ │ ├── Errors.js │ │ │ │ │ │ ├── Search.js │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ ├── Page.js │ │ │ │ │ │ │ ├── PageButtons.js │ │ │ │ │ │ │ ├── PageHead.js │ │ │ │ │ │ │ ├── PageHeadDeleteModal.js │ │ │ │ │ │ │ ├── PageHeadFormModal.js │ │ │ │ │ │ │ ├── PageHeadReuseModal.js │ │ │ │ │ │ │ ├── PageHelp.js │ │ │ │ │ │ │ ├── PageManagement.js │ │ │ │ │ │ │ └── PageTabsHelp.js │ │ │ │ │ │ ├── question │ │ │ │ │ │ │ ├── Question.js │ │ │ │ │ │ │ ├── QuestionAddValue.js │ │ │ │ │ │ │ ├── QuestionAddValueHelp.js │ │ │ │ │ │ │ ├── QuestionContact.js │ │ │ │ │ │ │ ├── QuestionCopyValue.js │ │ │ │ │ │ │ ├── QuestionCopyValues.js │ │ │ │ │ │ │ ├── QuestionDefault.js │ │ │ │ │ │ │ ├── QuestionEraseValue.js │ │ │ │ │ │ │ ├── QuestionEraseValues.js │ │ │ │ │ │ │ ├── QuestionError.js │ │ │ │ │ │ │ ├── QuestionHelp.js │ │ │ │ │ │ │ ├── QuestionHelpTemplate.js │ │ │ │ │ │ │ ├── QuestionManagement.js │ │ │ │ │ │ │ ├── QuestionOptional.js │ │ │ │ │ │ │ ├── QuestionRemoveValue.js │ │ │ │ │ │ │ ├── QuestionReuseValue.js │ │ │ │ │ │ │ ├── QuestionReuseValues.js │ │ │ │ │ │ │ ├── QuestionSuccess.js │ │ │ │ │ │ │ ├── QuestionText.js │ │ │ │ │ │ │ ├── QuestionWarning.js │ │ │ │ │ │ │ └── QuestionWidget.js │ │ │ │ │ │ ├── questionset │ │ │ │ │ │ │ ├── QuestionSet.js │ │ │ │ │ │ │ ├── QuestionSetAddSet.js │ │ │ │ │ │ │ ├── QuestionSetAddSetHelp.js │ │ │ │ │ │ │ ├── QuestionSetCopySet.js │ │ │ │ │ │ │ ├── QuestionSetHelp.js │ │ │ │ │ │ │ ├── QuestionSetHelpTemplate.js │ │ │ │ │ │ │ ├── QuestionSetManagement.js │ │ │ │ │ │ │ └── QuestionSetRemoveSet.js │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── CheckboxInput.js │ │ │ │ │ │ │ ├── CheckboxWidget.js │ │ │ │ │ │ │ ├── DateInput.js │ │ │ │ │ │ │ ├── DateWidget.js │ │ │ │ │ │ │ ├── FileInput.js │ │ │ │ │ │ │ ├── FileWidget.js │ │ │ │ │ │ │ ├── RadioInput.js │ │ │ │ │ │ │ ├── RadioWidget.js │ │ │ │ │ │ │ ├── RangeInput.js │ │ │ │ │ │ │ ├── RangeWidget.js │ │ │ │ │ │ │ ├── SelectInput.js │ │ │ │ │ │ │ ├── SelectWidget.js │ │ │ │ │ │ │ ├── TextInput.js │ │ │ │ │ │ │ ├── TextWidget.js │ │ │ │ │ │ │ ├── TextareaInput.js │ │ │ │ │ │ │ ├── TextareaWidget.js │ │ │ │ │ │ │ ├── YesNoInput.js │ │ │ │ │ │ │ ├── YesNoWidget.js │ │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AdditionalTextInput.js │ │ │ │ │ │ │ ├── AdditionalTextareaInput.js │ │ │ │ │ │ │ ├── OptionHelp.js │ │ │ │ │ │ │ ├── OptionText.js │ │ │ │ │ │ │ └── Unit.js │ │ │ │ │ └── sidebar │ │ │ │ │ │ ├── Buttons.js │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ ├── NavigationLink.js │ │ │ │ │ │ ├── Overview.js │ │ │ │ │ │ └── Progress.js │ │ │ │ ├── constants │ │ │ │ │ └── management.js │ │ │ │ ├── containers │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Sidebar.js │ │ │ │ ├── factories │ │ │ │ │ ├── SetFactory.js │ │ │ │ │ └── ValueFactory.js │ │ │ │ ├── hooks │ │ │ │ │ └── useFocusEffect.js │ │ │ │ ├── reducers │ │ │ │ │ ├── contactReducer.js │ │ │ │ │ ├── interviewReducer.js │ │ │ │ │ └── projectReducer.js │ │ │ │ ├── store │ │ │ │ │ └── configureStore.js │ │ │ │ └── utils │ │ │ │ │ ├── interview.js │ │ │ │ │ ├── location.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── page.js │ │ │ │ │ ├── question.js │ │ │ │ │ ├── set.js │ │ │ │ │ └── value.js │ │ │ ├── projects.js │ │ │ └── projects │ │ │ │ ├── actions │ │ │ │ ├── actionTypes.js │ │ │ │ └── projectsActions.js │ │ │ │ ├── api │ │ │ │ └── ProjectsApi.js │ │ │ │ ├── components │ │ │ │ ├── helper │ │ │ │ │ ├── PendingInvitations.js │ │ │ │ │ ├── ProjectFilters.js │ │ │ │ │ ├── ProjectImport.js │ │ │ │ │ ├── Table.js │ │ │ │ │ └── index.js │ │ │ │ └── main │ │ │ │ │ └── Projects.js │ │ │ │ ├── containers │ │ │ │ └── Main.js │ │ │ │ ├── hooks │ │ │ │ └── useDatePicker.js │ │ │ │ ├── reducers │ │ │ │ ├── projectsReducer.js │ │ │ │ └── userReducer.js │ │ │ │ ├── store │ │ │ │ └── configureStore.js │ │ │ │ └── utils │ │ │ │ ├── constants.js │ │ │ │ ├── getProjectTitlePath.js │ │ │ │ ├── getUserRoles.js │ │ │ │ ├── index.js │ │ │ │ ├── translations.js │ │ │ │ └── userIsManager.js │ │ └── scss │ │ │ ├── interview.scss │ │ │ └── projects.scss │ ├── constants.py │ ├── exports.py │ ├── filters.py │ ├── forms.py │ ├── handlers │ │ ├── __init__.py │ │ ├── project_changed_catalog.py │ │ ├── sync_utils.py │ │ ├── task_changed.py │ │ └── view_changed.py │ ├── imports.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── delete_projects.py │ │ │ ├── export_projects.py │ │ │ ├── find_inactive_projects.py │ │ │ ├── prune_projects.py │ │ │ └── sync_projects.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial_after_reset.py │ │ ├── 0002_meta.py │ │ ├── 0003_meta.py │ │ ├── 0004_remove_current_snapshot.py │ │ ├── 0005_snapshot.py │ │ ├── 0006_project_values.py │ │ ├── 0007_data_migration.py │ │ ├── 0008_not_null.py │ │ ├── 0009_options.py │ │ ├── 0010_add_db_contraint.py │ │ ├── 0011_refactoring.py │ │ ├── 0012_membership.py │ │ ├── 0013_data_migration.py │ │ ├── 0014_remove_owner.py │ │ ├── 0015_permissions.py │ │ ├── 0016_catalog_on_delete.py │ │ ├── 0017_value_unit_and_type.py │ │ ├── 0018_data_migration.py │ │ ├── 0019_option.py │ │ ├── 0020_data_migration.py │ │ ├── 0021_order.py │ │ ├── 0022_move_attribute_to_attributeentity.py │ │ ├── 0023_meta.py │ │ ├── 0024_data_migration.py │ │ ├── 0025_remove_null_true.py │ │ ├── 0026_django2.py │ │ ├── 0027_project_site.py │ │ ├── 0028_meta.py │ │ ├── 0029_remove_manager.py │ │ ├── 0030_project_views.py │ │ ├── 0031_project_tasks.py │ │ ├── 0032_data_migration.py │ │ ├── 0033_default_value_type.py │ │ ├── 0034_issue.py │ │ ├── 0035_data_migration.py │ │ ├── 0036_remove_project_tasks.py │ │ ├── 0037_project_tasks.py │ │ ├── 0038_integration_integrationoption.py │ │ ├── 0039_integrationoption_secret.py │ │ ├── 0040_issueresource.py │ │ ├── 0041_value_external_id.py │ │ ├── 0042_allow_site_null.py │ │ ├── 0043_meta.py │ │ ├── 0044_meta.py │ │ ├── 0045_value_file.py │ │ ├── 0046_project_mptt.py │ │ ├── 0047_continuation.py │ │ ├── 0048_meta.py │ │ ├── 0049_invite.py │ │ ├── 0050_value_set_prefix.py │ │ ├── 0051_alter_value_value_type.py │ │ ├── 0052_meta.py │ │ ├── 0053_alter_continuation_questionset.py │ │ ├── 0054_continuation_page.py │ │ ├── 0055_data_migration.py │ │ ├── 0056_remove_continuation_questionset.py │ │ ├── 0057_value_set_collection.py │ │ ├── 0058_meta.py │ │ ├── 0059_project_progress.py │ │ ├── 0060_alter_issue_options.py │ │ ├── 0061_alter_value_value_type.py │ │ ├── 0062_visibility.py │ │ ├── 0063_alter_value_options.py │ │ └── __init__.py │ ├── mixins.py │ ├── models │ │ ├── __init__.py │ │ ├── continuation.py │ │ ├── integration.py │ │ ├── invite.py │ │ ├── issue.py │ │ ├── membership.py │ │ ├── project.py │ │ ├── snapshot.py │ │ ├── value.py │ │ └── visibility.py │ ├── permissions.py │ ├── progress.py │ ├── providers.py │ ├── renderers.py │ ├── rules.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── overview.py │ │ │ └── page.py │ ├── static │ │ └── projects │ │ │ └── css │ │ │ └── project.scss │ ├── templates │ │ └── projects │ │ │ ├── email │ │ │ ├── project_contact_message.txt │ │ │ ├── project_contact_subject.txt │ │ │ ├── project_invite_message.txt │ │ │ └── project_invite_subject.txt │ │ │ ├── integration_confirm_delete.html │ │ │ ├── integration_form.html │ │ │ ├── invite_confirm_delete.html │ │ │ ├── issue_detail.html │ │ │ ├── issue_form.html │ │ │ ├── issue_send.html │ │ │ ├── issue_send_email.html │ │ │ ├── issue_send_integrations.html │ │ │ ├── issue_send_message.txt │ │ │ ├── issue_send_sidebar.html │ │ │ ├── issue_send_subject.txt │ │ │ ├── membership_confirm_delete.html │ │ │ ├── membership_form.html │ │ │ ├── overlays │ │ │ ├── issue_send_issue_attachments_de.html │ │ │ ├── issue_send_issue_attachments_en.html │ │ │ ├── issue_send_issue_attachments_fr.html │ │ │ ├── issue_send_issue_attachments_it.html │ │ │ ├── issue_send_issue_message_de.html │ │ │ ├── issue_send_issue_message_en.html │ │ │ ├── issue_send_issue_message_fr.html │ │ │ ├── issue_send_issue_message_it.html │ │ │ ├── issue_send_support_info_de.html │ │ │ ├── issue_send_support_info_en.html │ │ │ ├── issue_send_support_info_fr.html │ │ │ ├── issue_send_support_info_it.html │ │ │ ├── project_export_project_de.html │ │ │ ├── project_export_project_en.html │ │ │ ├── project_export_project_fr.html │ │ │ ├── project_export_project_it.html │ │ │ ├── project_import_project_de.html │ │ │ ├── project_import_project_en.html │ │ │ ├── project_import_project_fr.html │ │ │ ├── project_import_project_it.html │ │ │ ├── project_project_catalog_de.html │ │ │ ├── project_project_catalog_en.html │ │ │ ├── project_project_catalog_fr.html │ │ │ ├── project_project_catalog_it.html │ │ │ ├── project_project_issues_de.html │ │ │ ├── project_project_issues_en.html │ │ │ ├── project_project_issues_fr.html │ │ │ ├── project_project_issues_it.html │ │ │ ├── project_project_memberships_de.html │ │ │ ├── project_project_memberships_en.html │ │ │ ├── project_project_memberships_fr.html │ │ │ ├── project_project_memberships_it.html │ │ │ ├── project_project_questions_de.html │ │ │ ├── project_project_questions_en.html │ │ │ ├── project_project_questions_fr.html │ │ │ ├── project_project_questions_it.html │ │ │ ├── project_project_snapshots_de.html │ │ │ ├── project_project_snapshots_en.html │ │ │ ├── project_project_snapshots_fr.html │ │ │ ├── project_project_snapshots_it.html │ │ │ ├── project_project_views_de.html │ │ │ ├── project_project_views_en.html │ │ │ ├── project_project_views_fr.html │ │ │ ├── project_project_views_it.html │ │ │ ├── project_support_info_de.html │ │ │ ├── project_support_info_en.html │ │ │ ├── project_support_info_fr.html │ │ │ ├── project_support_info_it.html │ │ │ ├── projects_create_project_de.html │ │ │ ├── projects_create_project_en.html │ │ │ ├── projects_create_project_fr.html │ │ │ ├── projects_create_project_it.html │ │ │ ├── projects_import_project_de.html │ │ │ ├── projects_import_project_en.html │ │ │ ├── projects_import_project_fr.html │ │ │ ├── projects_import_project_it.html │ │ │ ├── projects_projects_table_de.html │ │ │ ├── projects_projects_table_en.html │ │ │ ├── projects_projects_table_fr.html │ │ │ ├── projects_projects_table_it.html │ │ │ ├── projects_support_info_de.html │ │ │ ├── projects_support_info_en.html │ │ │ ├── projects_support_info_fr.html │ │ │ └── projects_support_info_it.html │ │ │ ├── project_answers.html │ │ │ ├── project_answers_element.html │ │ │ ├── project_answers_export.html │ │ │ ├── project_answers_tree.html │ │ │ ├── project_confirm_cancel.html │ │ │ ├── project_confirm_delete.html │ │ │ ├── project_confirm_leave.html │ │ │ ├── project_detail.html │ │ │ ├── project_detail_header.html │ │ │ ├── project_detail_header_catalog.html │ │ │ ├── project_detail_header_description.html │ │ │ ├── project_detail_header_hierarchy.html │ │ │ ├── project_detail_header_visibility.html │ │ │ ├── project_detail_integrations.html │ │ │ ├── project_detail_integrations_help.html │ │ │ ├── project_detail_invites.html │ │ │ ├── project_detail_issues.html │ │ │ ├── project_detail_issues_help.html │ │ │ ├── project_detail_memberships.html │ │ │ ├── project_detail_memberships_help.html │ │ │ ├── project_detail_memberships_socialaccounts.html │ │ │ ├── project_detail_sidebar.html │ │ │ ├── project_detail_sidebar_parent_import.html │ │ │ ├── project_detail_snapshots.html │ │ │ ├── project_detail_snapshots_help.html │ │ │ ├── project_detail_views.html │ │ │ ├── project_detail_views_help.html │ │ │ ├── project_error.html │ │ │ ├── project_form.html │ │ │ ├── project_form_visibility.html │ │ │ ├── project_import.html │ │ │ ├── project_import_form.html │ │ │ ├── project_interview.html │ │ │ ├── project_interview_add_set_help.html │ │ │ ├── project_interview_add_value_help.html │ │ │ ├── project_interview_buttons_help.html │ │ │ ├── project_interview_contact_help.html │ │ │ ├── project_interview_done.html │ │ │ ├── project_interview_error.html │ │ │ ├── project_interview_multiple_values_warning.html │ │ │ ├── project_interview_navigation_help.html │ │ │ ├── project_interview_overview_help.html │ │ │ ├── project_interview_page_help.html │ │ │ ├── project_interview_page_tabs_help.html │ │ │ ├── project_interview_progress_help.html │ │ │ ├── project_interview_question_help.html │ │ │ ├── project_interview_questionset_help.html │ │ │ ├── project_interview_sidebar.html │ │ │ ├── project_view.html │ │ │ ├── project_view_export.html │ │ │ ├── projects.html │ │ │ ├── projects_pagination.html │ │ │ ├── snapshot_form.html │ │ │ └── snapshot_rollback.html │ ├── templatetags │ │ ├── __init__.py │ │ └── projects_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── e2e │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_frontend_project_detail.py │ │ │ └── test_frontend_projects.py │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ └── project_sync │ │ │ │ ├── __init__.py │ │ │ │ ├── arrange_project_tasks.py │ │ │ │ ├── arrange_project_views.py │ │ │ │ ├── assert_cli_output.py │ │ │ │ ├── assert_project_views_or_tasks.py │ │ │ │ ├── catalog_views.py │ │ │ │ └── constants.py │ │ ├── test_admin.py │ │ ├── test_command_sync_projects.py │ │ ├── test_commands.py │ │ ├── test_conditions.py │ │ ├── test_export.py │ │ ├── test_handlers_m2m_tasks_catalogs.py │ │ ├── test_handlers_m2m_tasks_groups.py │ │ ├── test_handlers_m2m_tasks_sites.py │ │ ├── test_handlers_m2m_views_catalogs.py │ │ ├── test_handlers_m2m_views_groups.py │ │ ├── test_handlers_m2m_views_sites.py │ │ ├── test_handlers_project_save.py │ │ ├── test_handlers_task_changes_availability.py │ │ ├── test_handlers_view_changes_availability.py │ │ ├── test_models.py │ │ ├── test_models_visibility.py │ │ ├── test_navigation.py │ │ ├── test_progress.py │ │ ├── test_utils.py │ │ ├── test_validator_conflict.py │ │ ├── test_validator_quota.py │ │ ├── test_validator_value_type.py │ │ ├── test_value.py │ │ ├── test_view_integration.py │ │ ├── test_view_issue.py │ │ ├── test_view_membership.py │ │ ├── test_view_membership_multisite.py │ │ ├── test_view_project.py │ │ ├── test_view_project_copy.py │ │ ├── test_view_project_create_import.py │ │ ├── test_view_project_join.py │ │ ├── test_view_project_leave.py │ │ ├── test_view_project_update_import.py │ │ ├── test_view_project_update_visibility.py │ │ ├── test_view_project_visibility.py │ │ ├── test_view_snapshot.py │ │ ├── test_viewset_catalog.py │ │ ├── test_viewset_integration.py │ │ ├── test_viewset_invite.py │ │ ├── test_viewset_issue.py │ │ ├── test_viewset_membership.py │ │ ├── test_viewset_project.py │ │ ├── test_viewset_project_contact.py │ │ ├── test_viewset_project_integration.py │ │ ├── test_viewset_project_invite.py │ │ ├── test_viewset_project_issue.py │ │ ├── test_viewset_project_membership.py │ │ ├── test_viewset_project_navigation.py │ │ ├── test_viewset_project_page.py │ │ ├── test_viewset_project_progress.py │ │ ├── test_viewset_project_snapshot.py │ │ ├── test_viewset_project_value.py │ │ ├── test_viewset_project_value_copy_set.py │ │ ├── test_viewset_project_visibility.py │ │ ├── test_viewset_snapshot.py │ │ ├── test_viewset_value.py │ │ └── test_viewset_value_search.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── utils.py │ ├── validators.py │ ├── views │ │ ├── __init__.py │ │ ├── integration.py │ │ ├── invite.py │ │ ├── issue.py │ │ ├── membership.py │ │ ├── project.py │ │ ├── project_answers.py │ │ ├── project_copy.py │ │ ├── project_create.py │ │ ├── project_update.py │ │ ├── project_view.py │ │ └── snapshot.py │ └── viewsets.py ├── questions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── forms.py │ ├── imports.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial_after_reset.py │ │ ├── 0002_meta.py │ │ ├── 0003_renaming.py │ │ ├── 0004_full_title.py │ │ ├── 0005_label.py │ │ ├── 0006_auto_20160803_1619.py │ │ ├── 0007_refactoring.py │ │ ├── 0008_data_migration.py │ │ ├── 0009_meta.py │ │ ├── 0010_label.py │ │ ├── 0011_path.py │ │ ├── 0012_meta.py │ │ ├── 0013_permissions.py │ │ ├── 0014_meta.py │ │ ├── 0015_question_unit_and_type.py │ │ ├── 0016_data_migration.py │ │ ├── 0017_question_optionsets.py │ │ ├── 0018_data_migration.py │ │ ├── 0019_questionentity_conditions.py │ │ ├── 0020_data_migration.py │ │ ├── 0021_questionentity_is_collection.py │ │ ├── 0022_data_migration.py │ │ ├── 0023_option.py │ │ ├── 0024_data_migration.py │ │ ├── 0025_questionset_and_questionitem.py │ │ ├── 0026_data_migration.py │ │ ├── 0027_remove_question_entity_and_question.py │ │ ├── 0028_rename_question.py │ │ ├── 0029_verbose_name_and_range.py │ │ ├── 0030_data_migration.py │ │ ├── 0031_rename_attribute_entity_to_attribute.py │ │ ├── 0032_meta.py │ │ ├── 0033_meta.py │ │ ├── 0034_move_questionset_to_section.py │ │ ├── 0035_data_migration.py │ │ ├── 0036_remove_subsection.py │ │ ├── 0037_rename_en_to_lang1.py │ │ ├── 0038_rename_de_to_lang2.py │ │ ├── 0039_meta.py │ │ ├── 0040_add_language_fields.py │ │ ├── 0041_data_migration.py │ │ ├── 0042_remove_null_true.py │ │ ├── 0043_django2.py │ │ ├── 0044_require_uri_prefix.py │ │ ├── 0045_catalog_sites.py │ │ ├── 0046_catalog_groups.py │ │ ├── 0047_manager.py │ │ ├── 0048_catalog_help.py │ │ ├── 0049_manager.py │ │ ├── 0050_data_migration.py │ │ ├── 0051_sites_blank.py │ │ ├── 0052_available.py │ │ ├── 0053_related_name.py │ │ ├── 0054_meta.py │ │ ├── 0055_catalog_locked.py │ │ ├── 0056_question_is_optional.py │ │ ├── 0057_question_default_text.py │ │ ├── 0058_question_default_option.py │ │ ├── 0059_question_default_external_id.py │ │ ├── 0060_meta.py │ │ ├── 0061_question_width.py │ │ ├── 0062_meta.py │ │ ├── 0063_questionset_questionset.py │ │ ├── 0064_widget_type_choices.py │ │ ├── 0065_data_migration.py │ │ ├── 0066_alter_question_value_type.py │ │ ├── 0067_meta.py │ │ ├── 0068_meta.py │ │ ├── 0069_page.py │ │ ├── 0070_alter_questionset_section.py │ │ ├── 0071_alter_question_questionset.py │ │ ├── 0072_questionset_page.py │ │ ├── 0073_question_page.py │ │ ├── 0074_data_migration.py │ │ ├── 0075_data_migration.py │ │ ├── 0076_questionset_remove_section.py │ │ ├── 0077_meta.py │ │ ├── 0078_catalog_uri_path.py │ │ ├── 0079_section_uri_path.py │ │ ├── 0080_page_uri_path.py │ │ ├── 0081_questionset_uri_path.py │ │ ├── 0082_question_uri_path.py │ │ ├── 0083_meta.py │ │ ├── 0084_catalog_sections.py │ │ ├── 0085_section_pages.py │ │ ├── 0086_page_questionsets.py │ │ ├── 0087_page_questions.py │ │ ├── 0088_questionset_questionsets.py │ │ ├── 0089_questionset_questions.py │ │ ├── 0090_add_editors.py │ │ ├── 0091_alter_questionset_options.py │ │ ├── 0092_remove_verbose_name_plural.py │ │ ├── 0093_alter_help_text_and_set_default.py │ │ ├── 0094_section_short_title.py │ │ ├── 0095_page_short_title.py │ │ ├── 0096_alter_question_value_type.py │ │ ├── 0097_alter_question_widget_type.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── catalog_section.py │ │ ├── page.py │ │ ├── page_question.py │ │ ├── page_questionset.py │ │ ├── question.py │ │ ├── questionset.py │ │ ├── questionset_question.py │ │ ├── questionset_questionset.py │ │ ├── section.py │ │ └── section_page.py │ ├── renderers │ │ ├── __init__.py │ │ └── mixins.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── catalog.py │ │ │ ├── page.py │ │ │ ├── question.py │ │ │ ├── questionset.py │ │ │ └── section.py │ ├── templates │ │ └── questions │ │ │ └── export │ │ │ ├── catalog.html │ │ │ ├── catalogs.html │ │ │ ├── page.html │ │ │ ├── pages.html │ │ │ ├── question.html │ │ │ ├── questions.html │ │ │ ├── questionset.html │ │ │ ├── questionsets.html │ │ │ ├── section.html │ │ │ └── sections.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_managers.py │ │ ├── test_models.py │ │ ├── test_validator_locked_catalogs.py │ │ ├── test_validator_locked_pages.py │ │ ├── test_validator_locked_questions.py │ │ ├── test_validator_locked_questionsets.py │ │ ├── test_validator_locked_sections.py │ │ ├── test_validator_unique_uri_catalogs.py │ │ ├── test_validator_unique_uri_pages.py │ │ ├── test_validator_unique_uri_questions.py │ │ ├── test_validator_unique_uri_questionsets.py │ │ ├── test_validator_unique_uri_sections.py │ │ ├── test_viewset_catalog.py │ │ ├── test_viewset_catalog_multisite.py │ │ ├── test_viewset_page.py │ │ ├── test_viewset_page_multisite.py │ │ ├── test_viewset_question.py │ │ ├── test_viewset_question_multisite.py │ │ ├── test_viewset_questionset.py │ │ ├── test_viewset_questionset_multisite.py │ │ ├── test_viewset_section.py │ │ ├── test_viewset_section_multisite.py │ │ └── test_viewset_widgettype.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── validators.py │ ├── viewsets.py │ └── widgets.py ├── services │ ├── __init__.py │ ├── apps.py │ ├── providers.py │ ├── urls │ │ └── __init__.py │ ├── validators.py │ └── views.py ├── share │ ├── reference.docx │ └── reference.odt ├── tasks │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── imports.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_many_to_many_for_conditions.py │ │ ├── 0003_meta.py │ │ ├── 0004_refactoring.py │ │ ├── 0005_data_migration.py │ │ ├── 0006_meta.py │ │ ├── 0007_permissions.py │ │ ├── 0008_remove_time_period.py │ │ ├── 0009_timeframe.py │ │ ├── 0010_meta.py │ │ ├── 0011_task_text.py │ │ ├── 0012_move_attribute_to_attributeentity.py │ │ ├── 0013_meta.py │ │ ├── 0014_move_timeframe_to_task.py │ │ ├── 0015_data_migration.py │ │ ├── 0016_remove_timeframe.py │ │ ├── 0017_rename_en_to_lang1.py │ │ ├── 0018_rename_de_to_lang2.py │ │ ├── 0019_meta.py │ │ ├── 0020_add_language_fields.py │ │ ├── 0021_data_migration.py │ │ ├── 0022_remove_null_true.py │ │ ├── 0023_django2.py │ │ ├── 0024_require_uri_prefix.py │ │ ├── 0025_task_sites.py │ │ ├── 0026_task_groups.py │ │ ├── 0027_manager.py │ │ ├── 0028_data_migration.py │ │ ├── 0029_sites_blank.py │ │ ├── 0030_available.py │ │ ├── 0031_related_name.py │ │ ├── 0032_task_catalogs.py │ │ ├── 0033_task_locked.py │ │ ├── 0034_task_editors.py │ │ ├── 0035_uri_path.py │ │ ├── 0036_task_order.py │ │ ├── 0037_alter_help_text.py │ │ ├── 0038_alter_task_uri_path.py │ │ └── __init__.py │ ├── models.py │ ├── renderers │ │ ├── __init__.py │ │ └── mixins.py │ ├── serializers │ │ ├── __init__.py │ │ ├── export.py │ │ └── v1.py │ ├── templates │ │ └── tasks │ │ │ └── export │ │ │ └── tasks.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_models.py │ │ ├── test_validator_locked.py │ │ ├── test_validator_unique_uri.py │ │ ├── test_viewset_task.py │ │ └── test_viewset_task_multisite.py │ ├── urls │ │ ├── __init__.py │ │ └── v1.py │ ├── validators.py │ └── viewsets.py └── views │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── imports.py │ ├── managers.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_view_template.py │ ├── 0003_refactoring.py │ ├── 0004_refactoring.py │ ├── 0005_meta.py │ ├── 0006_title_and_help.py │ ├── 0007_data_migration.py │ ├── 0008_permissions.py │ ├── 0009_meta.py │ ├── 0010_rename_en_to_lang1.py │ ├── 0011_rename_de_to_lang2.py │ ├── 0012_meta.py │ ├── 0013_add_language_fields.py │ ├── 0014_data_migration.py │ ├── 0015_remove_null_true.py │ ├── 0016_django2.py │ ├── 0017_require_uri_prefix.py │ ├── 0018_view_sites.py │ ├── 0019_view_groups.py │ ├── 0020_manager.py │ ├── 0021_view_catalogs.py │ ├── 0022_manager.py │ ├── 0023_data_migration.py │ ├── 0024_sites_blank.py │ ├── 0025_available.py │ ├── 0026_view_locked.py │ ├── 0027_view_editors.py │ ├── 0028_uri_path.py │ ├── 0029_view_order.py │ ├── 0030_alter_help_text.py │ ├── 0031_alter_view_uri_path.py │ └── __init__.py │ ├── models.py │ ├── renderers │ ├── __init__.py │ └── mixins.py │ ├── serializers │ ├── __init__.py │ ├── export.py │ └── v1.py │ ├── templates │ └── views │ │ ├── export │ │ └── views.html │ │ └── tags │ │ ├── value.html │ │ ├── value_file.html │ │ ├── value_inline_list.html │ │ └── value_list.html │ ├── templatetags │ ├── __init__.py │ └── view_tags.py │ ├── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_models.py │ ├── test_validator_locked.py │ ├── test_validator_unique_uri.py │ ├── test_view_tags.py │ ├── test_viewset_view.py │ └── test_viewset_view_multisite.py │ ├── urls │ ├── __init__.py │ └── v1.py │ ├── utils.py │ ├── validators.py │ └── viewsets.py ├── testing ├── config │ ├── __init__.py │ ├── settings │ │ ├── __init__.py │ │ └── base.py │ ├── urls.py │ └── wsgi.py ├── export │ ├── project.csv │ └── project.html ├── fixtures │ ├── accounts.json │ ├── conditions.json │ ├── domain.json │ ├── groups.json │ ├── options.json │ ├── overlays.json │ ├── projects.json │ ├── questions.json │ ├── sites.json │ ├── tasks.json │ ├── users.json │ └── views.json ├── import │ └── catalogs.json ├── manage.py ├── media │ ├── projects │ │ └── 1 │ │ │ ├── snapshots │ │ │ └── 7 │ │ │ │ └── values │ │ │ │ ├── 338 │ │ │ │ └── test.txt │ │ │ │ ├── 339 │ │ │ │ └── favicon.png │ │ │ │ └── 355 │ │ │ │ └── rdmo-logo.svg │ │ │ └── values │ │ │ ├── 238 │ │ │ └── rdmo-logo.svg │ │ │ ├── 240 │ │ │ └── test.txt │ │ │ └── 241 │ │ │ └── favicon.png │ └── test_file.txt └── xml │ ├── elements │ ├── attributes-non-unique-path.xml │ ├── attributes.xml │ ├── catalog.xml │ ├── catalogs.xml │ ├── conditions.xml │ ├── legacy │ │ ├── catalog-error-key.xml │ │ ├── conditions.xml │ │ ├── domain.xml │ │ ├── options.xml │ │ ├── questions.xml │ │ ├── tasks.xml │ │ └── views.xml │ ├── options.xml │ ├── optionsets.xml │ ├── pages.xml │ ├── question-error.xml │ ├── question.xml │ ├── questions.xml │ ├── questionsets.xml │ ├── sections.xml │ ├── tasks.xml │ ├── updated-and-changed │ │ ├── catalog-1.xml │ │ └── optionsets-1.xml │ └── views.xml │ ├── error-version-required.xml │ ├── error-version.xml │ ├── error.xml │ └── project.xml └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.ignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.16 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/conftest.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rdmo/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.3.2" 2 | -------------------------------------------------------------------------------- /rdmo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/__main__.py -------------------------------------------------------------------------------- /rdmo/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/accounts/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/account.py -------------------------------------------------------------------------------- /rdmo/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/admin.py -------------------------------------------------------------------------------- /rdmo/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/apps.py -------------------------------------------------------------------------------- /rdmo/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/forms.py -------------------------------------------------------------------------------- /rdmo/accounts/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/middleware.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0004_permission_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0004_permission_added.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0005_field_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0005_field_type.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0007_additional_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0007_additional_fields.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0008_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0008_related_name.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0009_proxyuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0009_proxyuser.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0010_consentfieldvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0010_consentfieldvalue.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0013_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0013_meta.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0015_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0015_data_migration.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0016_remove_null_true.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0016_remove_null_true.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0017_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0017_role.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0018_blank_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0018_blank_fields.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0019_delete_proxyuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0019_delete_proxyuser.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/0021_alter_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/migrations/0021_alter_help_text.py -------------------------------------------------------------------------------- /rdmo/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/models.py -------------------------------------------------------------------------------- /rdmo/accounts/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/accounts/serializers/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/serializers/v1.py -------------------------------------------------------------------------------- /rdmo/accounts/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/settings.py -------------------------------------------------------------------------------- /rdmo/accounts/socialaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/socialaccount.py -------------------------------------------------------------------------------- /rdmo/accounts/static/accounts/img/orcid-signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/static/accounts/img/orcid-signin.png -------------------------------------------------------------------------------- /rdmo/accounts/static/accounts/img/orcid_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/static/accounts/img/orcid_16x16.png -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/account_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/account_token.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/email.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/email/password_reset_key_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans 'Password reset' %} -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/email_confirm.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/login.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/login_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/login_form.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/logout.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/logout_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/logout_form.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/password_set.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/signup.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/signup_closed.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/terms_of_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/account/terms_of_use.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/terms_of_use_de.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | -------------------------------------------------------------------------------- /rdmo/accounts/templates/account/terms_of_use_en.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | -------------------------------------------------------------------------------- /rdmo/accounts/templates/socialaccount/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/socialaccount/login.html -------------------------------------------------------------------------------- /rdmo/accounts/templates/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templates/socialaccount/signup.html -------------------------------------------------------------------------------- /rdmo/accounts/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/accounts/templatetags/accounts_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/templatetags/accounts_tags.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/accounts/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/helpers.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/test_utils.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/test_views.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/test_views_socialaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/test_views_socialaccount.py -------------------------------------------------------------------------------- /rdmo/accounts/tests/test_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/tests/test_viewsets.py -------------------------------------------------------------------------------- /rdmo/accounts/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/accounts/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/urls/v1.py -------------------------------------------------------------------------------- /rdmo/accounts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/utils.py -------------------------------------------------------------------------------- /rdmo/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/views.py -------------------------------------------------------------------------------- /rdmo/accounts/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/accounts/viewsets.py -------------------------------------------------------------------------------- /rdmo/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/conditions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/admin.py -------------------------------------------------------------------------------- /rdmo/conditions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/apps.py -------------------------------------------------------------------------------- /rdmo/conditions/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/imports.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0003_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0003_meta.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0004_condition_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0004_condition_title.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0005_empty_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0005_empty_relation.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0007_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0007_ordering.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0008_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0008_validator.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0009_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0009_options.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0010_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0010_refactoring.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0011_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0011_refactoring.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0012_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0012_permissions.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0013_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0013_meta.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0014_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0014_meta.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0016_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0016_meta.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0017_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0017_data_migration.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0019_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0019_django2.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0021_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0021_related_name.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/0024_uri_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/migrations/0024_uri_path.py -------------------------------------------------------------------------------- /rdmo/conditions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/conditions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/models.py -------------------------------------------------------------------------------- /rdmo/conditions/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/conditions/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/conditions/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/conditions/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/serializers/export.py -------------------------------------------------------------------------------- /rdmo/conditions/serializers/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/serializers/v1.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_validator_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_validator_locked.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_validator_unique_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_validator_unique_uri.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_viewset_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_viewset_condition.py -------------------------------------------------------------------------------- /rdmo/conditions/tests/test_viewset_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/tests/test_viewset_relation.py -------------------------------------------------------------------------------- /rdmo/conditions/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/conditions/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/urls/v1.py -------------------------------------------------------------------------------- /rdmo/conditions/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/validators.py -------------------------------------------------------------------------------- /rdmo/conditions/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/conditions/viewsets.py -------------------------------------------------------------------------------- /rdmo/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/admin.py -------------------------------------------------------------------------------- /rdmo/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/apps.py -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSerif-Bold.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSerif-Italic.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/fonts/DroidSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/fonts/DroidSerif.ttf -------------------------------------------------------------------------------- /rdmo/core/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/img/favicon.png -------------------------------------------------------------------------------- /rdmo/core/assets/img/rdmo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/img/rdmo-logo.svg -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/actionTypes.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/configActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/configActions.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/pendingActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/pendingActions.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/settingsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/settingsActions.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/templateActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/templateActions.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/actions/userActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/actions/userActions.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/api/AccountsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/api/AccountsApi.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/api/BaseApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/api/BaseApi.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/api/CoreApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/api/CoreApi.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/base.js: -------------------------------------------------------------------------------- 1 | import 'bootstrap-sass' 2 | 3 | window.$ = require('jquery') 4 | -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/FileUploadButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/FileUploadButton.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/Html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/Html.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/Link.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/LinkButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/LinkButton.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/Modal.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/SearchField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/SearchField.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/Select.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/components/index.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/containers/Pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/containers/Pending.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/hooks/index.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/hooks/useLsState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/hooks/useLsState.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/hooks/useModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/hooks/useModal.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/hooks/useScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/hooks/useScrollToTop.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/reducers/configReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/reducers/configReducer.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/reducers/pendingReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/reducers/pendingReducer.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/reducers/settingsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/reducers/settingsReducer.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/reducers/templateReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/reducers/templateReducer.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/reducers/userReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/reducers/userReducer.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/api.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/config.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/index.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/lang.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/meta.js -------------------------------------------------------------------------------- /rdmo/core/assets/js/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/js/utils/store.js -------------------------------------------------------------------------------- /rdmo/core/assets/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/scss/base.scss -------------------------------------------------------------------------------- /rdmo/core/assets/scss/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/scss/utils.scss -------------------------------------------------------------------------------- /rdmo/core/assets/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/assets/scss/variables.scss -------------------------------------------------------------------------------- /rdmo/core/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/checks.py -------------------------------------------------------------------------------- /rdmo/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/constants.py -------------------------------------------------------------------------------- /rdmo/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/exceptions.py -------------------------------------------------------------------------------- /rdmo/core/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/exports.py -------------------------------------------------------------------------------- /rdmo/core/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/filters.py -------------------------------------------------------------------------------- /rdmo/core/import_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/import_helpers.py -------------------------------------------------------------------------------- /rdmo/core/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/imports.py -------------------------------------------------------------------------------- /rdmo/core/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/mail.py -------------------------------------------------------------------------------- /rdmo/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/management/commands/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/build.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/clean.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/delete_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/delete_users.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/deploy.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/find_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/find_users.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/make_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/make_theme.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/messages.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/npm.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/poedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/poedit.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/set_uri_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/set_uri_prefix.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/setup_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/setup_groups.py -------------------------------------------------------------------------------- /rdmo/core/management/commands/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/commands/upgrade.py -------------------------------------------------------------------------------- /rdmo/core/management/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/management/settings.py -------------------------------------------------------------------------------- /rdmo/core/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/managers.py -------------------------------------------------------------------------------- /rdmo/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/models.py -------------------------------------------------------------------------------- /rdmo/core/pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/pandoc.py -------------------------------------------------------------------------------- /rdmo/core/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/permissions.py -------------------------------------------------------------------------------- /rdmo/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/plugins.py -------------------------------------------------------------------------------- /rdmo/core/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/renderers.py -------------------------------------------------------------------------------- /rdmo/core/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/schema.py -------------------------------------------------------------------------------- /rdmo/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/serializers.py -------------------------------------------------------------------------------- /rdmo/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/settings.py -------------------------------------------------------------------------------- /rdmo/core/static/core/css/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/base.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/css/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/fonts.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/css/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/footer.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/css/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/header.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/css/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/static/core/css/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/utils.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/css/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/css/variables.scss -------------------------------------------------------------------------------- /rdmo/core/static/core/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/img/favicon.png -------------------------------------------------------------------------------- /rdmo/core/static/core/img/header/collection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/img/header/collection.jpg -------------------------------------------------------------------------------- /rdmo/core/static/core/img/header/library.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/img/header/library.jpg -------------------------------------------------------------------------------- /rdmo/core/static/core/img/rdmo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/img/rdmo-logo.png -------------------------------------------------------------------------------- /rdmo/core/static/core/img/rdmo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/img/rdmo-logo.svg -------------------------------------------------------------------------------- /rdmo/core/static/core/js/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/js/header.js -------------------------------------------------------------------------------- /rdmo/core/static/core/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/static/core/js/utils.js -------------------------------------------------------------------------------- /rdmo/core/templates/core/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/400.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/403.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/404.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/500.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about_text_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about_text_de.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about_text_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about_text_en.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about_text_es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about_text_es.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about_text_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about_text_fr.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/about_text_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/about_text_it.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/api.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/base.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/base_analytics.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/templates/core/base_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/base_footer.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/base_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/base_head.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/base_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/base_navigation.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/bootstrap_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/bootstrap_form.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/error.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/export.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/footer_text_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/footer_text_de.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/footer_text_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/footer_text_en.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/footer_text_es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/footer_text_es.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/footer_text_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/footer_text_fr.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/footer_text_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/footer_text_it.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home_text_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home_text_de.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home_text_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home_text_en.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home_text_es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home_text_es.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home_text_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home_text_fr.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/home_text_it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/home_text_it.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/page.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/projects_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/projects_page.html -------------------------------------------------------------------------------- /rdmo/core/templates/core/upload_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templates/core/upload_form.html -------------------------------------------------------------------------------- /rdmo/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/templatetags/core_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/templatetags/core_tags.py -------------------------------------------------------------------------------- /rdmo/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/constants.py -------------------------------------------------------------------------------- /rdmo/core/tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/core/tests/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/e2e/conftest.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_mail.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_openapi.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_package_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_package_status.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_pandoc.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_renderers.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_tags.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_utils.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_validators.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_views.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_viewset_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_viewset_groups.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_viewset_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_viewset_settings.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_viewset_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_viewset_sites.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_viewset_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_viewset_templates.py -------------------------------------------------------------------------------- /rdmo/core/tests/test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/test_xml.py -------------------------------------------------------------------------------- /rdmo/core/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/tests/utils.py -------------------------------------------------------------------------------- /rdmo/core/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/core/urls/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/urls/v1/__init__.py -------------------------------------------------------------------------------- /rdmo/core/urls/v1/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/urls/v1/core.py -------------------------------------------------------------------------------- /rdmo/core/urls/v1/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/urls/v1/openapi.py -------------------------------------------------------------------------------- /rdmo/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/utils.py -------------------------------------------------------------------------------- /rdmo/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/validators.py -------------------------------------------------------------------------------- /rdmo/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/views.py -------------------------------------------------------------------------------- /rdmo/core/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/viewsets.py -------------------------------------------------------------------------------- /rdmo/core/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/core/xml.py -------------------------------------------------------------------------------- /rdmo/domain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/domain/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/admin.py -------------------------------------------------------------------------------- /rdmo/domain/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/apps.py -------------------------------------------------------------------------------- /rdmo/domain/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/imports.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0002_additional_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0002_additional_input.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0003_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0003_condition.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0004_verbosename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0004_verbosename.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0005_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0005_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0007_db_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0007_db_index.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0008_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0008_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0009_remove_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0009_remove_condition.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0011_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0011_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0012_renaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0012_renaming.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0013_mptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0013_mptt.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0014_is_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0014_is_attribute.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0015_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0015_label.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0016_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0016_label.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0017_url_value_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0017_url_value_type.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0018_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0018_validator.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0019_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0019_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0020_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0020_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0021_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0021_options.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0022_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0022_options.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0023_fix_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0023_fix_label.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0024_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0024_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0025_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0025_refactoring.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0026_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0026_refactoring.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0027_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0027_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0028_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0028_path.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0029_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0029_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0030_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0030_permissions.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0031_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0031_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0037_remove_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0037_remove_attribute.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0039_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0039_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0040_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0040_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0041_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0041_data_migration.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0042_remove_null_true.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0042_remove_null_true.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0043_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0043_django2.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0044_mptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0044_mptt.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0046_parent_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0046_parent_cascade.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0047_attribute_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0047_attribute_locked.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/0048_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/migrations/0048_meta.py -------------------------------------------------------------------------------- /rdmo/domain/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/domain/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/models.py -------------------------------------------------------------------------------- /rdmo/domain/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/domain/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/domain/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/domain/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/serializers/export.py -------------------------------------------------------------------------------- /rdmo/domain/serializers/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/serializers/v1.py -------------------------------------------------------------------------------- /rdmo/domain/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/domain/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/domain/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/domain/tests/test_validator_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_validator_locked.py -------------------------------------------------------------------------------- /rdmo/domain/tests/test_validator_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_validator_parent.py -------------------------------------------------------------------------------- /rdmo/domain/tests/test_validator_unique_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_validator_unique_uri.py -------------------------------------------------------------------------------- /rdmo/domain/tests/test_viewset_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/tests/test_viewset_attribute.py -------------------------------------------------------------------------------- /rdmo/domain/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/domain/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/urls/v1.py -------------------------------------------------------------------------------- /rdmo/domain/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/validators.py -------------------------------------------------------------------------------- /rdmo/domain/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/domain/viewsets.py -------------------------------------------------------------------------------- /rdmo/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rdmo/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rdmo/locale/de/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/de/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /rdmo/locale/de/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/de/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /rdmo/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rdmo/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rdmo/locale/es/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/es/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /rdmo/locale/es/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/es/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /rdmo/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rdmo/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rdmo/locale/fr/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/fr/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /rdmo/locale/fr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/fr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /rdmo/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /rdmo/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /rdmo/locale/it/LC_MESSAGES/djangojs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/it/LC_MESSAGES/djangojs.mo -------------------------------------------------------------------------------- /rdmo/locale/it/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/locale/it/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /rdmo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/management/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/apps.py -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/ConditionsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/ConditionsApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/DomainApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/DomainApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/ManagementApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/ManagementApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/OptionsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/OptionsApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/QuestionsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/QuestionsApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/TasksApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/TasksApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/api/ViewsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/api/ViewsApi.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/constants/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/constants/elements.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/containers/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/containers/Main.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/containers/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/containers/Sidebar.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/hooks/useBool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/hooks/useBool.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/management.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/utils/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/utils/elements.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/utils/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/utils/filter.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/utils/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/utils/forms.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/utils/getDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/utils/getDiff.js -------------------------------------------------------------------------------- /rdmo/management/assets/js/utils/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/js/utils/location.js -------------------------------------------------------------------------------- /rdmo/management/assets/scss/management.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/assets/scss/management.scss -------------------------------------------------------------------------------- /rdmo/management/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/constants.py -------------------------------------------------------------------------------- /rdmo/management/import_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/import_utils.py -------------------------------------------------------------------------------- /rdmo/management/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/imports.py -------------------------------------------------------------------------------- /rdmo/management/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/management/management/commands/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/management/commands/import.py -------------------------------------------------------------------------------- /rdmo/management/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/rules.py -------------------------------------------------------------------------------- /rdmo/management/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/management/tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/management/tests/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/e2e/conftest.py -------------------------------------------------------------------------------- /rdmo/management/tests/e2e/frontend_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/e2e/frontend_helpers.py -------------------------------------------------------------------------------- /rdmo/management/tests/helpers_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/helpers_models.py -------------------------------------------------------------------------------- /rdmo/management/tests/helpers_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/helpers_xml.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_commands.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_conditions.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_domain.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_options.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_questions.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_tasks.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_import_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_import_views.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_merge_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_merge_attributes.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_view.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_viewset_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_viewset_import.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_viewset_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_viewset_meta.py -------------------------------------------------------------------------------- /rdmo/management/tests/test_viewset_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/tests/test_viewset_upload.py -------------------------------------------------------------------------------- /rdmo/management/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/management/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/urls/v1.py -------------------------------------------------------------------------------- /rdmo/management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/utils.py -------------------------------------------------------------------------------- /rdmo/management/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/views.py -------------------------------------------------------------------------------- /rdmo/management/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/management/viewsets.py -------------------------------------------------------------------------------- /rdmo/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/options/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/admin.py -------------------------------------------------------------------------------- /rdmo/options/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/apps.py -------------------------------------------------------------------------------- /rdmo/options/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/imports.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0002_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0002_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0003_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0003_data_migration.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0004_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0004_conditions.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0005_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0005_refactoring.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0006_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0006_refactoring.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0007_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0007_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0008_option_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0008_option_path.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0009_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0009_data_migration.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0010_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0010_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0011_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0011_permissions.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0012_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0012_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0013_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0013_order.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0016_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0016_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0018_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0018_data_migration.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0020_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0020_django2.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0021_data_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0021_data_migrations.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0022_cascade_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0022_cascade_options.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0024_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0024_related_name.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0027_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0027_meta.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0029_option_uri_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0029_option_uri_path.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0031_add_editors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0031_add_editors.py -------------------------------------------------------------------------------- /rdmo/options/migrations/0033_option_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/migrations/0033_option_help.py -------------------------------------------------------------------------------- /rdmo/options/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/options/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/models.py -------------------------------------------------------------------------------- /rdmo/options/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/providers.py -------------------------------------------------------------------------------- /rdmo/options/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/options/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/options/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/options/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/serializers/export.py -------------------------------------------------------------------------------- /rdmo/options/serializers/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/serializers/v1/__init__.py -------------------------------------------------------------------------------- /rdmo/options/serializers/v1/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/serializers/v1/option.py -------------------------------------------------------------------------------- /rdmo/options/serializers/v1/optionset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/serializers/v1/optionset.py -------------------------------------------------------------------------------- /rdmo/options/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/options/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/options/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/options/tests/test_viewset_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/tests/test_viewset_options.py -------------------------------------------------------------------------------- /rdmo/options/tests/test_viewset_optionsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/tests/test_viewset_optionsets.py -------------------------------------------------------------------------------- /rdmo/options/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/options/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/urls/v1.py -------------------------------------------------------------------------------- /rdmo/options/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/validators.py -------------------------------------------------------------------------------- /rdmo/options/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/options/viewsets.py -------------------------------------------------------------------------------- /rdmo/overlays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/overlays/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/admin.py -------------------------------------------------------------------------------- /rdmo/overlays/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/apps.py -------------------------------------------------------------------------------- /rdmo/overlays/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/overlays/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/overlays/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/models.py -------------------------------------------------------------------------------- /rdmo/overlays/static/overlays/css/overlays.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/static/overlays/css/overlays.scss -------------------------------------------------------------------------------- /rdmo/overlays/static/overlays/js/overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/static/overlays/js/overlays.js -------------------------------------------------------------------------------- /rdmo/overlays/templates/overlays/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/templates/overlays/buttons.html -------------------------------------------------------------------------------- /rdmo/overlays/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/overlays/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/tests/test_views.py -------------------------------------------------------------------------------- /rdmo/overlays/tests/test_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/tests/test_viewsets.py -------------------------------------------------------------------------------- /rdmo/overlays/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/overlays/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/urls/v1.py -------------------------------------------------------------------------------- /rdmo/overlays/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/views.py -------------------------------------------------------------------------------- /rdmo/overlays/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/overlays/viewsets.py -------------------------------------------------------------------------------- /rdmo/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/admin.py -------------------------------------------------------------------------------- /rdmo/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/apps.py -------------------------------------------------------------------------------- /rdmo/projects/assets/js/interview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/interview.js -------------------------------------------------------------------------------- /rdmo/projects/assets/js/interview/utils/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/interview/utils/meta.js -------------------------------------------------------------------------------- /rdmo/projects/assets/js/interview/utils/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/interview/utils/page.js -------------------------------------------------------------------------------- /rdmo/projects/assets/js/interview/utils/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/interview/utils/set.js -------------------------------------------------------------------------------- /rdmo/projects/assets/js/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/projects.js -------------------------------------------------------------------------------- /rdmo/projects/assets/js/projects/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/js/projects/utils/index.js -------------------------------------------------------------------------------- /rdmo/projects/assets/scss/interview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/scss/interview.scss -------------------------------------------------------------------------------- /rdmo/projects/assets/scss/projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/assets/scss/projects.scss -------------------------------------------------------------------------------- /rdmo/projects/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/constants.py -------------------------------------------------------------------------------- /rdmo/projects/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/exports.py -------------------------------------------------------------------------------- /rdmo/projects/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/filters.py -------------------------------------------------------------------------------- /rdmo/projects/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/forms.py -------------------------------------------------------------------------------- /rdmo/projects/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/handlers/sync_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/handlers/sync_utils.py -------------------------------------------------------------------------------- /rdmo/projects/handlers/task_changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/handlers/task_changed.py -------------------------------------------------------------------------------- /rdmo/projects/handlers/view_changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/handlers/view_changed.py -------------------------------------------------------------------------------- /rdmo/projects/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/imports.py -------------------------------------------------------------------------------- /rdmo/projects/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/managers.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0002_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0002_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0003_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0003_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0005_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0005_snapshot.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0006_project_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0006_project_values.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0007_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0007_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0008_not_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0008_not_null.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0009_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0009_options.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0011_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0011_refactoring.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0012_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0012_membership.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0013_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0013_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0014_remove_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0014_remove_owner.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0015_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0015_permissions.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0018_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0018_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0019_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0019_option.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0020_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0020_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0021_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0021_order.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0023_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0023_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0024_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0024_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0026_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0026_django2.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0027_project_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0027_project_site.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0028_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0028_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0029_remove_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0029_remove_manager.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0030_project_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0030_project_views.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0031_project_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0031_project_tasks.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0032_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0032_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0034_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0034_issue.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0035_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0035_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0037_project_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0037_project_tasks.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0040_issueresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0040_issueresource.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0043_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0043_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0044_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0044_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0045_value_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0045_value_file.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0046_project_mptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0046_project_mptt.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0047_continuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0047_continuation.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0048_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0048_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0049_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0049_invite.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0052_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0052_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0055_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0055_data_migration.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0058_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0058_meta.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/0062_visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/migrations/0062_visibility.py -------------------------------------------------------------------------------- /rdmo/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/mixins.py -------------------------------------------------------------------------------- /rdmo/projects/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/__init__.py -------------------------------------------------------------------------------- /rdmo/projects/models/continuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/continuation.py -------------------------------------------------------------------------------- /rdmo/projects/models/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/integration.py -------------------------------------------------------------------------------- /rdmo/projects/models/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/invite.py -------------------------------------------------------------------------------- /rdmo/projects/models/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/issue.py -------------------------------------------------------------------------------- /rdmo/projects/models/membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/membership.py -------------------------------------------------------------------------------- /rdmo/projects/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/project.py -------------------------------------------------------------------------------- /rdmo/projects/models/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/snapshot.py -------------------------------------------------------------------------------- /rdmo/projects/models/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/value.py -------------------------------------------------------------------------------- /rdmo/projects/models/visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/models/visibility.py -------------------------------------------------------------------------------- /rdmo/projects/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/permissions.py -------------------------------------------------------------------------------- /rdmo/projects/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/progress.py -------------------------------------------------------------------------------- /rdmo/projects/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/providers.py -------------------------------------------------------------------------------- /rdmo/projects/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/renderers.py -------------------------------------------------------------------------------- /rdmo/projects/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/rules.py -------------------------------------------------------------------------------- /rdmo/projects/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/serializers/export.py -------------------------------------------------------------------------------- /rdmo/projects/serializers/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/serializers/v1/__init__.py -------------------------------------------------------------------------------- /rdmo/projects/serializers/v1/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/serializers/v1/overview.py -------------------------------------------------------------------------------- /rdmo/projects/serializers/v1/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/serializers/v1/page.py -------------------------------------------------------------------------------- /rdmo/projects/static/projects/css/project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/static/projects/css/project.scss -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/issue_send_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{{ issue.task.title }} 2 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_buttons_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_overview_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_page_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_progress_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_question_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_questionset_help.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/project_interview_sidebar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templates/projects/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/templates/projects/projects.html -------------------------------------------------------------------------------- /rdmo/projects/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/templatetags/projects_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/templatetags/projects_tags.py -------------------------------------------------------------------------------- /rdmo/projects/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/conftest.py -------------------------------------------------------------------------------- /rdmo/projects/tests/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/tests/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/e2e/conftest.py -------------------------------------------------------------------------------- /rdmo/projects/tests/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/tests/helpers/project_sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/projects/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_commands.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_conditions.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_export.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_models_visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_models_visibility.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_navigation.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_progress.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_utils.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_validator_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_validator_conflict.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_validator_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_validator_quota.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_value.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_integration.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_issue.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_membership.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_project.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_project_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_project_copy.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_project_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_project_join.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_project_leave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_project_leave.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_view_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_view_snapshot.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_catalog.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_integration.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_invite.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_issue.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_membership.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_project.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_snapshot.py -------------------------------------------------------------------------------- /rdmo/projects/tests/test_viewset_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/tests/test_viewset_value.py -------------------------------------------------------------------------------- /rdmo/projects/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/projects/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/urls/v1.py -------------------------------------------------------------------------------- /rdmo/projects/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/utils.py -------------------------------------------------------------------------------- /rdmo/projects/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/validators.py -------------------------------------------------------------------------------- /rdmo/projects/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/__init__.py -------------------------------------------------------------------------------- /rdmo/projects/views/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/integration.py -------------------------------------------------------------------------------- /rdmo/projects/views/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/invite.py -------------------------------------------------------------------------------- /rdmo/projects/views/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/issue.py -------------------------------------------------------------------------------- /rdmo/projects/views/membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/membership.py -------------------------------------------------------------------------------- /rdmo/projects/views/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project.py -------------------------------------------------------------------------------- /rdmo/projects/views/project_answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project_answers.py -------------------------------------------------------------------------------- /rdmo/projects/views/project_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project_copy.py -------------------------------------------------------------------------------- /rdmo/projects/views/project_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project_create.py -------------------------------------------------------------------------------- /rdmo/projects/views/project_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project_update.py -------------------------------------------------------------------------------- /rdmo/projects/views/project_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/project_view.py -------------------------------------------------------------------------------- /rdmo/projects/views/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/views/snapshot.py -------------------------------------------------------------------------------- /rdmo/projects/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/projects/viewsets.py -------------------------------------------------------------------------------- /rdmo/questions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/questions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/admin.py -------------------------------------------------------------------------------- /rdmo/questions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/apps.py -------------------------------------------------------------------------------- /rdmo/questions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/constants.py -------------------------------------------------------------------------------- /rdmo/questions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/forms.py -------------------------------------------------------------------------------- /rdmo/questions/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/imports.py -------------------------------------------------------------------------------- /rdmo/questions/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/managers.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0002_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0002_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0003_renaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0003_renaming.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0004_full_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0004_full_title.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0005_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0005_label.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0007_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0007_refactoring.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0009_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0009_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0010_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0010_label.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0011_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0011_path.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0012_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0012_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0013_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0013_permissions.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0014_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0014_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0023_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0023_option.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0032_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0032_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0033_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0033_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0039_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0039_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0043_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0043_django2.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0045_catalog_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0045_catalog_sites.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0047_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0047_manager.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0048_catalog_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0048_catalog_help.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0049_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0049_manager.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0051_sites_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0051_sites_blank.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0052_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0052_available.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0053_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0053_related_name.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0054_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0054_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0060_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0060_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0062_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0062_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0067_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0067_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0068_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0068_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0069_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0069_page.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0073_question_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0073_question_page.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0077_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0077_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0080_page_uri_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0080_page_uri_path.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0083_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0083_meta.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0085_section_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0085_section_pages.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/0090_add_editors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/migrations/0090_add_editors.py -------------------------------------------------------------------------------- /rdmo/questions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/questions/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/__init__.py -------------------------------------------------------------------------------- /rdmo/questions/models/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/catalog.py -------------------------------------------------------------------------------- /rdmo/questions/models/catalog_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/catalog_section.py -------------------------------------------------------------------------------- /rdmo/questions/models/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/page.py -------------------------------------------------------------------------------- /rdmo/questions/models/page_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/page_question.py -------------------------------------------------------------------------------- /rdmo/questions/models/page_questionset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/page_questionset.py -------------------------------------------------------------------------------- /rdmo/questions/models/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/question.py -------------------------------------------------------------------------------- /rdmo/questions/models/questionset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/questionset.py -------------------------------------------------------------------------------- /rdmo/questions/models/questionset_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/questionset_question.py -------------------------------------------------------------------------------- /rdmo/questions/models/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/section.py -------------------------------------------------------------------------------- /rdmo/questions/models/section_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/models/section_page.py -------------------------------------------------------------------------------- /rdmo/questions/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/questions/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/questions/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/export.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/__init__.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/catalog.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/page.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/question.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/questionset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/questionset.py -------------------------------------------------------------------------------- /rdmo/questions/serializers/v1/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/serializers/v1/section.py -------------------------------------------------------------------------------- /rdmo/questions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/questions/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_managers.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_viewset_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_viewset_catalog.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_viewset_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_viewset_page.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_viewset_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_viewset_question.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_viewset_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_viewset_section.py -------------------------------------------------------------------------------- /rdmo/questions/tests/test_viewset_widgettype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/tests/test_viewset_widgettype.py -------------------------------------------------------------------------------- /rdmo/questions/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/questions/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/urls/v1.py -------------------------------------------------------------------------------- /rdmo/questions/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/validators.py -------------------------------------------------------------------------------- /rdmo/questions/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/viewsets.py -------------------------------------------------------------------------------- /rdmo/questions/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/questions/widgets.py -------------------------------------------------------------------------------- /rdmo/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/services/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/services/apps.py -------------------------------------------------------------------------------- /rdmo/services/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/services/providers.py -------------------------------------------------------------------------------- /rdmo/services/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/services/urls/__init__.py -------------------------------------------------------------------------------- /rdmo/services/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/services/validators.py -------------------------------------------------------------------------------- /rdmo/services/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/services/views.py -------------------------------------------------------------------------------- /rdmo/share/reference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/share/reference.docx -------------------------------------------------------------------------------- /rdmo/share/reference.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/share/reference.odt -------------------------------------------------------------------------------- /rdmo/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/admin.py -------------------------------------------------------------------------------- /rdmo/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/apps.py -------------------------------------------------------------------------------- /rdmo/tasks/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/imports.py -------------------------------------------------------------------------------- /rdmo/tasks/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/managers.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0003_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0003_meta.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0004_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0004_refactoring.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0005_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0005_data_migration.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0006_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0006_meta.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0007_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0007_permissions.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0009_timeframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0009_timeframe.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0010_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0010_meta.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0011_task_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0011_task_text.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0013_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0013_meta.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0015_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0015_data_migration.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0016_remove_timeframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0016_remove_timeframe.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0019_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0019_meta.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0021_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0021_data_migration.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0022_remove_null_true.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0022_remove_null_true.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0023_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0023_django2.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0025_task_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0025_task_sites.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0026_task_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0026_task_groups.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0027_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0027_manager.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0028_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0028_data_migration.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0029_sites_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0029_sites_blank.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0030_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0030_available.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0031_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0031_related_name.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0032_task_catalogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0032_task_catalogs.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0033_task_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0033_task_locked.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0034_task_editors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0034_task_editors.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0035_uri_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0035_uri_path.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0036_task_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0036_task_order.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/0037_alter_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/migrations/0037_alter_help_text.py -------------------------------------------------------------------------------- /rdmo/tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/tasks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/models.py -------------------------------------------------------------------------------- /rdmo/tasks/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/tasks/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/tasks/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/tasks/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/serializers/export.py -------------------------------------------------------------------------------- /rdmo/tasks/serializers/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/serializers/v1.py -------------------------------------------------------------------------------- /rdmo/tasks/templates/tasks/export/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/templates/tasks/export/tasks.html -------------------------------------------------------------------------------- /rdmo/tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_validator_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_validator_locked.py -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_validator_unique_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_validator_unique_uri.py -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_viewset_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_viewset_task.py -------------------------------------------------------------------------------- /rdmo/tasks/tests/test_viewset_task_multisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/tests/test_viewset_task_multisite.py -------------------------------------------------------------------------------- /rdmo/tasks/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/tasks/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/urls/v1.py -------------------------------------------------------------------------------- /rdmo/tasks/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/validators.py -------------------------------------------------------------------------------- /rdmo/tasks/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/tasks/viewsets.py -------------------------------------------------------------------------------- /rdmo/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/admin.py -------------------------------------------------------------------------------- /rdmo/views/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/apps.py -------------------------------------------------------------------------------- /rdmo/views/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/imports.py -------------------------------------------------------------------------------- /rdmo/views/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/managers.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0001_initial.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0002_view_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0002_view_template.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0003_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0003_refactoring.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0004_refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0004_refactoring.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0005_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0005_meta.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0006_title_and_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0006_title_and_help.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0007_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0007_data_migration.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0008_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0008_permissions.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0009_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0009_meta.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0012_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0012_meta.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0014_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0014_data_migration.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0015_remove_null_true.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0015_remove_null_true.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0016_django2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0016_django2.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0018_view_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0018_view_sites.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0019_view_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0019_view_groups.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0020_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0020_manager.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0021_view_catalogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0021_view_catalogs.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0022_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0022_manager.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0023_data_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0023_data_migration.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0024_sites_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0024_sites_blank.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0025_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0025_available.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0026_view_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0026_view_locked.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0027_view_editors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0027_view_editors.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0028_uri_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0028_uri_path.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0029_view_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0029_view_order.py -------------------------------------------------------------------------------- /rdmo/views/migrations/0030_alter_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/migrations/0030_alter_help_text.py -------------------------------------------------------------------------------- /rdmo/views/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/models.py -------------------------------------------------------------------------------- /rdmo/views/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/renderers/__init__.py -------------------------------------------------------------------------------- /rdmo/views/renderers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/renderers/mixins.py -------------------------------------------------------------------------------- /rdmo/views/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/serializers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/serializers/export.py -------------------------------------------------------------------------------- /rdmo/views/serializers/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/serializers/v1.py -------------------------------------------------------------------------------- /rdmo/views/templates/views/export/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/templates/views/export/views.html -------------------------------------------------------------------------------- /rdmo/views/templates/views/tags/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/templates/views/tags/value.html -------------------------------------------------------------------------------- /rdmo/views/templates/views/tags/value_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/templates/views/tags/value_file.html -------------------------------------------------------------------------------- /rdmo/views/templates/views/tags/value_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/templates/views/tags/value_list.html -------------------------------------------------------------------------------- /rdmo/views/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/templatetags/view_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/templatetags/view_tags.py -------------------------------------------------------------------------------- /rdmo/views/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_admin.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_models.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_validator_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_validator_locked.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_validator_unique_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_validator_unique_uri.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_view_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_view_tags.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_viewset_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_viewset_view.py -------------------------------------------------------------------------------- /rdmo/views/tests/test_viewset_view_multisite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/tests/test_viewset_view_multisite.py -------------------------------------------------------------------------------- /rdmo/views/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdmo/views/urls/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/urls/v1.py -------------------------------------------------------------------------------- /rdmo/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/utils.py -------------------------------------------------------------------------------- /rdmo/views/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/validators.py -------------------------------------------------------------------------------- /rdmo/views/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/rdmo/views/viewsets.py -------------------------------------------------------------------------------- /testing/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/config/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/config/settings/__init__.py -------------------------------------------------------------------------------- /testing/config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/config/settings/base.py -------------------------------------------------------------------------------- /testing/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/config/urls.py -------------------------------------------------------------------------------- /testing/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/config/wsgi.py -------------------------------------------------------------------------------- /testing/export/project.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/export/project.csv -------------------------------------------------------------------------------- /testing/export/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/export/project.html -------------------------------------------------------------------------------- /testing/fixtures/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/accounts.json -------------------------------------------------------------------------------- /testing/fixtures/conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/conditions.json -------------------------------------------------------------------------------- /testing/fixtures/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/domain.json -------------------------------------------------------------------------------- /testing/fixtures/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/groups.json -------------------------------------------------------------------------------- /testing/fixtures/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/options.json -------------------------------------------------------------------------------- /testing/fixtures/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/overlays.json -------------------------------------------------------------------------------- /testing/fixtures/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/projects.json -------------------------------------------------------------------------------- /testing/fixtures/questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/questions.json -------------------------------------------------------------------------------- /testing/fixtures/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/sites.json -------------------------------------------------------------------------------- /testing/fixtures/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/tasks.json -------------------------------------------------------------------------------- /testing/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/users.json -------------------------------------------------------------------------------- /testing/fixtures/views.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/fixtures/views.json -------------------------------------------------------------------------------- /testing/import/catalogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/import/catalogs.json -------------------------------------------------------------------------------- /testing/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/manage.py -------------------------------------------------------------------------------- /testing/media/projects/1/values/240/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/media/projects/1/values/240/test.txt -------------------------------------------------------------------------------- /testing/media/projects/1/values/241/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/media/projects/1/values/241/favicon.png -------------------------------------------------------------------------------- /testing/media/test_file.txt: -------------------------------------------------------------------------------- 1 | This is a test. 2 | -------------------------------------------------------------------------------- /testing/xml/elements/attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/attributes.xml -------------------------------------------------------------------------------- /testing/xml/elements/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/catalog.xml -------------------------------------------------------------------------------- /testing/xml/elements/catalogs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/catalogs.xml -------------------------------------------------------------------------------- /testing/xml/elements/conditions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/conditions.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/conditions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/conditions.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/domain.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/options.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/questions.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/tasks.xml -------------------------------------------------------------------------------- /testing/xml/elements/legacy/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/legacy/views.xml -------------------------------------------------------------------------------- /testing/xml/elements/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/options.xml -------------------------------------------------------------------------------- /testing/xml/elements/optionsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/optionsets.xml -------------------------------------------------------------------------------- /testing/xml/elements/pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/pages.xml -------------------------------------------------------------------------------- /testing/xml/elements/question-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/question-error.xml -------------------------------------------------------------------------------- /testing/xml/elements/question.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/question.xml -------------------------------------------------------------------------------- /testing/xml/elements/questions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/questions.xml -------------------------------------------------------------------------------- /testing/xml/elements/questionsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/questionsets.xml -------------------------------------------------------------------------------- /testing/xml/elements/sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/sections.xml -------------------------------------------------------------------------------- /testing/xml/elements/tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/tasks.xml -------------------------------------------------------------------------------- /testing/xml/elements/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/elements/views.xml -------------------------------------------------------------------------------- /testing/xml/error-version-required.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/error-version-required.xml -------------------------------------------------------------------------------- /testing/xml/error-version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/error-version.xml -------------------------------------------------------------------------------- /testing/xml/error.xml: -------------------------------------------------------------------------------- 1 | This is not a valid XML! 2 | -------------------------------------------------------------------------------- /testing/xml/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/testing/xml/project.xml -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmorganiser/rdmo/HEAD/webpack.config.js --------------------------------------------------------------------------------