Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@colliand
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colliand/39bf1b8ddab88766084a to your computer and use it in GitHub Desktop.
Save colliand/39bf1b8ddab88766084a to your computer and use it in GitHub Desktop.
<script src="https://cdn.rawgit.com/knsv/mermaid/0.3.0/dist/mermaid.full.js"></script>
### Crowdmark Assessment Creation
<div class="mermaid">
graph TB
A((Start)) -->|Enter Title| B{Select Type}
B -->|Administered| D(Template)
B -->|Assigned| H(Template)
D ---|Double-sided?<br>Upload Template| E(Enrollments)
E -->|Enter Emails<br>Extra Assessments?| F(Generate PDF)
F -->|Download PDF| G((Dashboard))
H -->|Upload Template| I(Details)
I -->|Due Date<br>Lateness Penalty<br>Optional Note| J(Enrollments)
J -->|Enter Emails| K(Distribute)
K --> G
style A fill:#8bc341,stroke:#333,stroke-width:2px;
style G fill:#8bc341,stroke:#333,stroke-width:2px;
style B fill:#0091d6,stroke:#333,stroke-width:2px;
style H fill:#bd5a9b,stroke:#333,stroke-width:2px;
style D fill:#bd5a9b,stroke:#333,stroke-width:2px;
style J fill:#009bc7,stroke:#333,stroke-width:2px;
style E fill:#009bc7,stroke:#333,stroke-width:2px;
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment