Skip to content

Commit

Permalink
Content audit: Get Started section (#668)
Browse files Browse the repository at this point in the history
* centralize vars

* missed one

* fix the extra newline

* fix RS descriptor one more time

* don't hardcode the up states
  • Loading branch information
fzhao99 authored Mar 6, 2024
1 parent db00c6e commit bc9ab65
Show file tree
Hide file tree
Showing 13 changed files with 55 additions and 28 deletions.
14 changes: 14 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,20 @@ defaults:
values:
sitemap: true

content:
supported_diseases:
- COVID-19
- Flu A
- Flu B
- RSV
universal_pipeline_states:
- Alaska
- California
- Hawaii
- New York
- Rhode Island
- US Virgin Islands

exclude:
- .jekyll-cache/
- .sass-cache/
Expand Down
8 changes: 8 additions & 0 deletions _includes/content/states-on-universal-pipeline.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<ul>
{% for state in site.content.universal_pipeline_states %}
<li>{{ state }}</li>
{% endfor %}
</ul>



10 changes: 10 additions & 0 deletions _includes/content/supported-diseases-string.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{% assign diseases = "" %}
{%- for disease in site.content.supported_diseases -%}
{% if forloop.last %}
{% assign diseases = diseases | append: 'and ' | append: disease %}
{% else %}
{% assign diseases = diseases | append: disease | append: ', ' %}
{% endif %}
{%- endfor -%}

{{ diseases }}
7 changes: 7 additions & 0 deletions _includes/content/supported-diseases.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<ul>
{% for disease in site.content.supported_diseases %}
<li>{{ disease }}</li>
{% endfor %}
</ul>


10 changes: 0 additions & 10 deletions _includes/influenza-supported-states.html

This file was deleted.

10 changes: 0 additions & 10 deletions _includes/rsv-supported-states.html

This file was deleted.

6 changes: 5 additions & 1 deletion _pages/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ return_top: 'true'

Before you can use SimpleReport, you’ll need to set it up.

If you’re conducting COVID-19 tests and want an easier way to report results, find out [how to sign up]({% link _pages/getting-started/organizations-and-testing-facilities/onboard-your-organization.md %}).
SimpleReport supports the following conditions:

{%include content/supported-diseases.html%}

If you're looking for an an easier way to report results, find out [how to sign up]({% link _pages/getting-started/organizations-and-testing-facilities/onboard-your-organization.md %}).

If you’re a public health department, learn [about ReportStream]({% link _pages/getting-started/public-health-departments/about-prime-reportstream.md %}).
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ home_link: true
return_top: 'true'
---

If you’re doing COVID-19 testing, your first step is to choose just one person to sign up for your organization account. They'll create the account and complete [identity verification](#verify-your-identity). This person — called the account administrator — can add testing facilities and staff after creating the organization account.
Your first step is to choose just one person to sign up for your organization account. They'll create the account and complete [identity verification](#verify-your-identity). This person — called the account administrator — can add testing facilities and staff after creating the organization account.

## Organizations and facilities

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ home_link: true
return_top: "true"
---

SimpleReport submits results to public health departments for a variety of diagnostic tests — also known as test devices, test kits, or just tests. We include all devices from the Centers for Disease Control (CDC) list of COVID-19 and multiplex (flu and COVID-19) diagnostic tests available in the U.S.
{% capture diseases %}
{%- include content/supported-diseases-string.html -%}
{% endcapture %}

SimpleReport submits results to public health departments for a variety of diagnostic tests — also known as test devices, test kits, or just tests. We include all devices from the Centers for Disease Control (CDC) list of COVID-19 and multiplex ({{diseases | strip}}) diagnostic tests available in the U.S.

Don’t see the test device you’re using? [Your organization administrator can update your facility settings](https://www.simplereport.gov/using-simplereport/manage-facility-info/update-facility-settings) by adding a new test device, or by deleting any you aren’t using anymore. If you’re an admin and don’t see the one you're using in your facility settings, [contact support](https://www.simplereport.gov/contact-us).
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ If you report to one of these states or territories, review our instructions on

## Other states or locations

If you’re a facility doing COVID-19 testing and reporting, or a public health department not located in one of the states or territories listed above, [let us know you’re interested in SimpleReport]({% link pages/forms/waitlist-form.html %}).
If you’re a facility doing rapid point-of-care testing and reporting, or a public health department not located in one of the states or territories listed above, [let us know you’re interested in SimpleReport]({% link pages/forms/waitlist-form.html %}).
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ home_link: true
return_top: 'true'
---

Public health departments receive SimpleReport testing data via ReportStream (previously known as the PRIME Data Hub). ReportStream is a free and open source data platform that makes it easier for testing facilities to send their COVID-19 test results to public health departments.
Public health departments receive SimpleReport testing data via ReportStream (previously known as the PRIME Data Hub). ReportStream is CDC’s free interoperable platform that aggregates and securely delivers public health data from organizations and testing facilities directly to public health entities.
![Diagram showing how SimpleReport, lab, and hospitals all send data to the Data Hub, which then sends data to state and county public health departments]({% link assets/img/resources/about-prime-reportstream/report-stream-diagram.png %})

There are three main reasons for public health departments to use ReportStream:
- **You’ll receive data from SimpleReport.** If your jurisdiction wants to receive COVID-19 test results from SimpleReport, you’ll need to build an integration with ReportStream.
- **You’ll receive data from SimpleReport.** If your jurisdiction wants to receive test results from SimpleReport, you’ll need to build an integration with ReportStream.
- **You’ll have to support fewer connections.** ReportStream’s model focuses on aggregating data from multiple sources and senders, which you’ll receive together in a single feed.
- **You’ll get more complete, timely data.** ReportStream validates data from its senders and transfers it to you at your preferred frequency and in your preferred format.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To record flu results on SimpleReport, [conduct and submit a test](https://www.s
## Reporting results
Organizations can use SimpleReport to report positive flu results to the following state health departments:

{% include influenza-supported-states.html %}
{% include content/states-on-universal-pipeline.html %}

You can report COVID-19, flu, and RSV results all from a single spreadsheet using [SimpleReport's bulk uploader](https://www.simplereport.gov/using-simplereport/report-test-results/bulk-upload-results/). [See more information and guidance about reporting flu results](https://www.simplereport.gov/assets/resources/bulk_results_upload_guide-flu_pilot.pdf).

Expand Down
2 changes: 1 addition & 1 deletion _pages/using-simplereport/test-for-other-diseases/rsv.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To record RSV results on SimpleReport, [conduct and submit a test](https://www.s
## Reporting results
Organizations can use SimpleReport to report positive RSV results to the following state health departments:

{% include rsv-supported-states.html %}
{% include content/states-on-universal-pipeline.html %}

You can report COVID-19, flu, and RSV results all from a single spreadsheet using [SimpleReport's bulk uploader](https://www.simplereport.gov/using-simplereport/report-test-results/bulk-upload-results/). [See more information and guidance about reporting flu results](https://www.simplereport.gov/assets/resources/bulk_results_upload_guide-flu_pilot.pdf).

Expand Down

0 comments on commit bc9ab65

Please sign in to comment.