diff --git a/a2cps-cms/templates/fullwidth.html b/a2cps-cms/templates/fullwidth.html deleted file mode 100644 index 44d1ab3d..00000000 --- a/a2cps-cms/templates/fullwidth.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "a2cps_cms/templates/fullwidth.html" %} diff --git a/a2cps-cms/templates/standard.html b/a2cps-cms/templates/standard.html deleted file mode 100644 index 4a09051a..00000000 --- a/a2cps-cms/templates/standard.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "a2cps_cms/templates/standard.html" %} diff --git a/a2cps_cms/__init__.py b/a2cps_cms/__init__.py deleted file mode 100755 index e69de29b..00000000 diff --git a/a2cps_cms/settings_custom.py b/a2cps_cms/settings_custom.py deleted file mode 100644 index fa49985b..00000000 --- a/a2cps_cms/settings_custom.py +++ /dev/null @@ -1,39 +0,0 @@ -# CUSTOM SETTINGS VALUES. -# TACC WMA CMS SITE: -# *.A2CPS.TACC.UTEXAS.EDU - - -######################## -# DJANGO CMS SETTINGS -######################## - -CMS_TEMPLATES = ( - ('a2cps_cms/templates/standard.html', 'Standard'), - ('a2cps_cms/templates/fullwidth.html', 'Full Width'), - ('a2cps-cms/templates/standard.html', 'DEPRECATED Standard'), - ('a2cps-cms/templates/fullwidth.html', 'DEPRECATED Full Width'), - ('guide.html', 'Guide'), - ('guides/getting_started.html', 'Guide: Getting Started'), - ('guides/data_transfer.html', 'Guide: Data Transfer'), - ('guides/data_transfer.globus.html', 'Guide: Globus Data Transfer'), - ('guides/portal_technology.html', 'Guide: Portal Technology Stack') -) - -######################## -# TACC: LOGOS -######################## - -LOGO = [ - "a2cps", - "a2cps_cms/img/org_logos/a2cps.png", - "", - "/", - "_self", - "A2CPS: Acute to Chronic Pain Signatures", - "anonymous", - "True" -] - -FAVICON = { - "img_file_src": "a2cps_cms/img/org_logos/favicon.ico" -} diff --git a/a2cps_cms/static/a2cps_cms/css/src/_migrations/v1_v2/a2cps.css b/a2cps_cms/static/a2cps_cms/css/src/_migrations/v1_v2/a2cps.css deleted file mode 100644 index ad98431f..00000000 --- a/a2cps_cms/static/a2cps_cms/css/src/_migrations/v1_v2/a2cps.css +++ /dev/null @@ -1,103 +0,0 @@ -/* -A2CPS Migration Styles -HOW: Manually find discrepencies in UI that seem specific to A2CPS -*/ - -/*! - * A2CPS Migration Styles - */ - - - - - -/* ELEMENTS */ - -/* Table Content */ - -table, -td, -th { - /* To mimic 2020 site by restoring browser default */ - border-color: inherit; /* override `site.css` */ -} - -/* To mimic unscoped styles from Angular component that v1 CMS assumes exist */ -/* SEE: https://bitbucket.org/taccaci/frontera/src/8167403/client/src/angular/data_depot/projects/components/project-meta/project-meta.css?#project-meta.css-34 */ -td { - padding-right: 2.25em; - padding-bottom: 0.5em; -} - - - - - -/* COMPONENTS */ - - - -/* COMPONENTS: Bootstrap */ - -/* Cards */ - -/* To mimic 2020 site faux cards via Bootstrap cards */ -/* SEE: https://a2cps.org/patients/.../ */ -/* SEE: https://a2cps.org/researchers/ */ -/* FAQ: A faux cards was a
's (header, body) */ -.card { - /* To clear `.card` styles */ - border-radius: 0; - - /* To mimic header
(from inline styles) */ - margin-top: 20px; - - /* To mimic body (from inline styles) */ - margin-bottom: 20px; -} - -.card-header { - /* To mimic header
(from inline styles) */ - padding: 15px; - - /* To mimic header
's typography (from inline styles) */ - text-align: center; - font-weight: bold; - font-size: 16px; -} -.card-header:first-child { - /* To clear `.card` styles */ - border-radius: 0; -} - -.card-body { - /* SEE: https://a2cps.org/connect/ */ - padding: 15px; -} - -/* To mimic faux card inline styles */ -.card.bg-light .card-header, -.card.bg-transparent .card-header { - background-color: #DFDFDF; - border-bottom-color: #DFDFDF; -} -.card.bg-light .card-body, -.card.bg-transparent .card-body { - /* SEE: https://a2cps.org/connect/ */ - border-color: #DFDFDF; -} - -/* Cards: "For ..." Pages */ -.s-page-cards .card, -.s-page-cards .card-header { - /* To clear `.card` styles */ - border: none; -} -.s-page-cards .card-header p { - /* To prevent
(forced by Text plugin WYSIWIG) from breaking layout */ - margin: 0; -} -.s-page-cards .card-body { - /* To clear `.card` styles */ - padding: 0; -} diff --git a/a2cps_cms/static/a2cps_cms/css/src/migrate.v1_v2.css b/a2cps_cms/static/a2cps_cms/css/src/migrate.v1_v2.css deleted file mode 100644 index 5f8127dd..00000000 --- a/a2cps_cms/static/a2cps_cms/css/src/migrate.v1_v2.css +++ /dev/null @@ -1,5 +0,0 @@ -/* DO NOT ADD STYLES HERE; ONLY IMPORT OTHER STYLESHEETS */ - -@import url("_migrations/v1_v2.css"); /* Core-CMS:/taccsite_cms/…/ */ - -@import url("./_migrations/v1_v2/a2cps.css"); diff --git a/a2cps_cms/static/a2cps_cms/img/org_logos/a2cps.png b/a2cps_cms/static/a2cps_cms/img/org_logos/a2cps.png deleted file mode 100644 index e4667517..00000000 Binary files a/a2cps_cms/static/a2cps_cms/img/org_logos/a2cps.png and /dev/null differ diff --git a/a2cps_cms/static/a2cps_cms/img/org_logos/favicon.ico b/a2cps_cms/static/a2cps_cms/img/org_logos/favicon.ico deleted file mode 100644 index 03d10431..00000000 Binary files a/a2cps_cms/static/a2cps_cms/img/org_logos/favicon.ico and /dev/null differ diff --git a/a2cps_cms/templates/assets_custom.html b/a2cps_cms/templates/assets_custom.html deleted file mode 100644 index 1e6470a0..00000000 --- a/a2cps_cms/templates/assets_custom.html +++ /dev/null @@ -1,4 +0,0 @@ -{% load static %} - - - diff --git a/a2cps_cms/templates/fullwidth.html b/a2cps_cms/templates/fullwidth.html deleted file mode 100644 index c0f92047..00000000 --- a/a2cps_cms/templates/fullwidth.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "fullwidth.html" %} -{% load cms_tags %} - -{% block assets_custom %} - {{ block.super }} - - {% include "./assets_custom.html" %} -{% endblock assets_custom %} diff --git a/a2cps_cms/templates/snippets/a2cps-consortium-map.html b/a2cps_cms/templates/snippets/a2cps-consortium-map.html deleted file mode 100644 index 22e831f6..00000000 --- a/a2cps_cms/templates/snippets/a2cps-consortium-map.html +++ /dev/null @@ -1 +0,0 @@ -
diff --git a/a2cps_cms/templates/snippets/gh-245-markup-single-paragraph-whitespace.html b/a2cps_cms/templates/snippets/gh-245-markup-single-paragraph-whitespace.html deleted file mode 100644 index 4bd179a6..00000000 --- a/a2cps_cms/templates/snippets/gh-245-markup-single-paragraph-whitespace.html +++ /dev/null @@ -1 +0,0 @@ -diff --git a/a2cps_cms/templates/snippets/iframe-report-consort.html b/a2cps_cms/templates/snippets/iframe-report-consort.html deleted file mode 100644 index 7f16900e..00000000 --- a/a2cps_cms/templates/snippets/iframe-report-consort.html +++ /dev/null @@ -1 +0,0 @@ -
diff --git a/a2cps_cms/templates/snippets/iframe-report-weekly-dash.html b/a2cps_cms/templates/snippets/iframe-report-weekly-dash.html deleted file mode 100644 index bc41e9a1..00000000 --- a/a2cps_cms/templates/snippets/iframe-report-weekly-dash.html +++ /dev/null @@ -1 +0,0 @@ -
diff --git a/a2cps_cms/templates/snippets/study-timeline-table.html b/a2cps_cms/templates/snippets/study-timeline-table.html deleted file mode 100644 index ea747859..00000000 --- a/a2cps_cms/templates/snippets/study-timeline-table.html +++ /dev/null @@ -1,151 +0,0 @@ -
- Timeline - |
-
- 2 - 6 weeks before surgery - |
-
- |
-
- 3 thru 28 days after surgery - |
-
- 6 weeks after surgery - |
-
- 3 months after surgery - |
-
- 6 months after surgery - |
-
- 12 months after surgery - |
-
- Location - |
-
- Visit 1 - |
-
- Remote - |
-
- Visit 2 - |
-
- Visit 3 - |
-
- Remote - |
-
- Remote - |
- |
- Set of Surveys: Online after consent, prior to visit or at study visit - |
-
- |
- - |
- |
-
- |
- - | - | |
- Brief Surveys - Remote - |
- - |
- |
- - | - |
- |
-
- |
- |
- Functional Testing - |
-
- |
- - | - |
- |
- - | - | |
- Sensory Testing - |
-
- |
- - | - |
- |
- - | - | |
- Blood Draw - |
-
- |
- - |
- |
-
- |
- - | - | |
- Brain Imaging - |
-
- |
- - | - |
- |
- - | - |
Published March 2022
- -Join us Mar 23 at 2ET as our entire A2CPS consortium gathers onscreen. Learn more about this groundbreaking research effort - plus invited talks from Yarimar Carrasquillo, Ted Price, and Vivianne Tawfik.
- -Published November 2021
- -Congratulations to Acute to Chronic Pain Signatures (A2CPS) Consortium member Giovanni Berardi, DPT, PhD, who was recently awarded funding from the National Institutes of Health’s HEAL (Helping to End Addiction Long-termSM) Initiative. The NIH HEAL InitiativeSM is aimed at improving prevention and treatment strategies for both opioid abuse and chronic pain.
- -Published December 2020
- -A group from the University of Michigan has been chosen to lead the second A2CPS Multisite Clinical Center. They will study 1,800 individuals scheduled for thoracic surgery.
-Welcome to the A2CPS team!
-Published September 2020
- -Dr. Ari Kahn (DIRC) has been selected to receive the 2020 American Association for Cancer Research (AACR) Team Science Award. The award recognizes his pivotal contributions to the establishment and success of the Cancer Genome Atlas project.
-Congratulations, Dr. Kahn!
- -