Lab Staff

One page summary of learning path for Lab Staff

Goals

Your goals of learning are

  1. Understand different scenarios you might encounter
  2. Learn the basics of handing scenarios above.
  3. Practice these assessments. You will be tested on this before you start working.

Day to day scenarios

1. Lab test request assigned to you

New Patient walks in when you are at he clinic.

2. New patient walk-in

Learning Path

Click thorugh sections below and learn.

Step 1: Installing app and login

Step 2: Search and Create Patient record

Download this theme to your themes directory:

cd mysite/themes
git clone https://github.com/aaranxu/adidoks.git

Or install as a submodule:

cd mysite
git init  # if your project is a git repository already, ignore this command
git submodule add https://github.com/aaranxu/adidoks.git themes/adidoks

Step 3: Share Invoice with patient

Enable the theme in your config.toml in the site derectory:

theme = "adidoks"

Or copy the config.toml.example from the theme directory to your project's root directory:

cp themes/adidoks/config.toml.example config.toml

Step 4: Collect Payments

You can copy the content from the theme directory to your project:

cp -r themes/adidoks/content .

You can modify or add new posts in the content/blog, content/docs or other content directories as needed.

Step 5: Collect the sample

Just run zola serve in the root path of the project:

zola serve

AdiDoks will start the Zola development web server accessible by default at http://127.0.0.1:1111. Saved changes will live reload in the browser.