diff --git a/primed/collaborative_analysis/urls.py b/primed/collaborative_analysis/urls.py deleted file mode 100644 index 31735ff0..00000000 --- a/primed/collaborative_analysis/urls.py +++ /dev/null @@ -1,21 +0,0 @@ -from django.urls import include, path - -from . import views - -app_name = "collaborative_analysis" - - -collaborative_analysis_workspace_patterns = ( - [ - path( - "//audit/", - views.WorkspaceAudit.as_view(), - name="audit", - ), - ], - "workspaces", -) - -urlpatterns = [ - path("workspaces/", include(collaborative_analysis_workspace_patterns)), -] diff --git a/primed/templates/collaborative_analysis/collaborativeanalysisworkspace_audit.html b/primed/templates/collaborative_analysis/collaborativeanalysisworkspace_audit.html deleted file mode 100644 index 394609db..00000000 --- a/primed/templates/collaborative_analysis/collaborativeanalysisworkspace_audit.html +++ /dev/null @@ -1,53 +0,0 @@ -{% extends "anvil_consortium_manager/base.html" %} - -{% block title %}dbGaP workspace audit{% endblock %} - - -{% block content %} - -

Collaborative analysis workspace audit

- -
- -
- -

Audit results

- -
-

- To have access to a Collaborative Analysis Workspace, an account must meet both of the following criteria: - -

    -
  • Be in the analyst group associated with the workspace
  • -
  • Be in the auth domain for all source workspaces
  • -
-

-

The audit result categories are explained below. -

    - -
  • Verified includes the following:
  • -
      -
    • An account in the analyst group is in the auth domain for this workspace and is in all auth domains for all source workspaces.
    • -
    • An account in the analyst group is not in the auth domain for this workspace and is not in all auth domains for all source workspaces.
    • -
    - -
  • Needs action includes the following:
  • -
      -
    • An account in the analyst group is not in the auth domain for this workspace and is in all auth domains for all source workspaces.
    • -
    • An account in the analyst group is in the auth domain for this workspace and is not in all auth domains for all source workspaces.
    • -
    - -
  • Errors
  • -
      -
    • A group is unexpectedly in the auth domain.
    • -
    -
-

-

Any errors should be reported!

-
- -{% include "__audit_tables.html" with verified_table=verified_table needs_action_table=needs_action_table errors_table=errors_table %} - -{% endblock content %}