right-tree/docs/img/flowchart.md
Matthew Northcott 535ade8a63 Update documentation
- Rewrite README.md
- Modify build-pdf.sh script to concatenate template and README.md
- Add userguide recipe to Makefile
2023-04-24 16:14:08 +12:00

754 B

flowchart TB access[Access site] activation[Activation] valid[Valid key?] remaining[Activations remaining?] checkout[Stripe Checkout] questionnaire[Questionnaire] activate[Activate key] results[Show table of results] error[Error] physical[Ordered physical copy?] receive[Receive physical copy in mail] done[Done]

access-->activation
activation-->checkout
checkout-->activation
activation-->valid
valid--"No"-->error
valid--"Yes"-->remaining
remaining--"Yes"-->questionnaire
remaining--"No"-->results
error-->activation
questionnaire-->activate
activate-->results
results-->physical
physical--"No"-->done
physical--"Yes"-->receive
receive-->done