From 6b8d3efde0daf87109cda030e491e8a830e60871 Mon Sep 17 00:00:00 2001 From: Adrienne Stilp Date: Fri, 19 Jan 2024 16:15:22 -0800 Subject: [PATCH] Remove accidentally committed files --- primed/collaborative_analysis/urls.py | 21 -------- .../collaborativeanalysisworkspace_audit.html | 53 ------------------- 2 files changed, 74 deletions(-) delete mode 100644 primed/collaborative_analysis/urls.py delete mode 100644 primed/templates/collaborative_analysis/collaborativeanalysisworkspace_audit.html 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 %}