diff --git a/.forestry/front_matter/templates/post.yml b/.forestry/front_matter/templates/post.yml new file mode 100644 index 00000000..b1c1a63e --- /dev/null +++ b/.forestry/front_matter/templates/post.yml @@ -0,0 +1,25 @@ +--- +label: Post +hide_body: false +fields: +- name: title + type: text + config: + required: false + label: Title + description: Name of the Post +- name: date + type: datetime + description: Date of Publishing + config: + required: false + date_format: + time_format: + display_utc: false + label: Date +- name: image + type: file + config: + maxSize: 64 + label: image + description: Images included in the post diff --git a/.forestry/settings.yml b/.forestry/settings.yml new file mode 100644 index 00000000..8afa63cb --- /dev/null +++ b/.forestry/settings.yml @@ -0,0 +1,29 @@ +--- +new_page_extension: md +auto_deploy: false +admin_path: '' +webhook_url: +sections: +- type: heading + label: Tutorials +- type: jekyll-pages + label: Pages + create: all +- type: jekyll-posts + label: Posts + create: all +upload_dir: uploads +public_path: "/uploads" +front_matter_path: '' +use_front_matter_path: false +file_template: ":filename:" +build: + preview_env: + - JEKYLL_ENV=staging + preview_output_directory: _site + install_dependencies_command: bundle install --path vendor/bundle + preview_docker_image: forestryio/ruby:2.6 + mount_path: "/srv" + working_dir: "/srv" + instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future + -d _site diff --git a/_drafts/2019-12-15-this-is-a-draft.md b/_drafts/2019-12-15-this-is-a-draft.md index c693af7d..206fd64c 100644 --- a/_drafts/2019-12-15-this-is-a-draft.md +++ b/_drafts/2019-12-15-this-is-a-draft.md @@ -1,12 +1,13 @@ --- layout: post -title: "This is a Draft Article" -date: 2019-12-14 08:44:38 -0400 +title: This is a Draft Article +date: 2019-12-14T08:44:38.000-04:00 category: partner-club -category-name: "Partner Club" +category-name: Partner Club author: mac short-description: This is a short description, less than 60 characters if possible. ---- +--- Insert your article here, using markdown formatting. +## Hello World \ No newline at end of file diff --git a/_drafts/Tutorials/filtering.md b/_drafts/Tutorials/filtering.md new file mode 100644 index 00000000..fafbdd31 --- /dev/null +++ b/_drafts/Tutorials/filtering.md @@ -0,0 +1,7 @@ +--- +layout: post +category: Tutorial +title: Filtering +subcategory: Tailoring the Report for you needs + +--- diff --git a/_posts/2020-11-09-filtering.md b/_posts/2020-11-09-filtering.md new file mode 100644 index 00000000..7d088d5d --- /dev/null +++ b/_posts/2020-11-09-filtering.md @@ -0,0 +1,28 @@ +--- +layout: Post +category: Tutorial +title: Filtering +subcategory: Tailoring the Report for you needs + +--- +# Filtering + +##### What is Filtering? + +This is the process of choosing a smaller part of your data set and using that subset of the data for analysis & viewing. + +**_Example_**: Filtering the report to only show one Unit from the hospital. (Filtering is temporary, the complete data set is kept, but it is just hidden) + +##### Why should I filter? + +Filtering data makes the report easier for you the user to read and understand. Filtering enables you to only view the data that matters to you. + +**_Example:_** A line chart with every unit may be tricky to read. However, a line chart filtered to the units that are of your concern id much easier to understand. + +##### How can I filter? + +Self Service Reports have buttons and dropdowns on every page. When these buttons or dropdowns are used, the report is ‘filtered’ to your needs**_._** + +**_Example_**: On the home page there are buttons to filter the Month/Year and the Hospital/Units. Clicking on any of these will ‘**filter**’ the report + +![Clicking on any of the buttons on this page will filter the report](/uploads/home_meal.jpg "Example of filters") \ No newline at end of file diff --git a/_posts/Tutorials/.gitkeep b/_posts/Tutorials/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/filtering.md b/filtering.md new file mode 100644 index 00000000..0f9d1b47 --- /dev/null +++ b/filtering.md @@ -0,0 +1,8 @@ +--- +layout: page +category: Tutorial +title: Filtering +subcategory: Tailoring the Report for you needs +published: false + +--- diff --git a/uploads/home_meal.jpg b/uploads/home_meal.jpg new file mode 100644 index 00000000..c31b6847 Binary files /dev/null and b/uploads/home_meal.jpg differ