You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2022. It is now read-only.
graph LR
A(Start)
A --> B[Look for an item]
B --> C{Did you find it?}
C -->|Yes| D(Stop looking)
C -->|No| E{Do you need it?}
E -->|Yes| B
E -->|No| D
Loading
Sequence diagrams
sequenceDiagram
participant U as User
participant C as Client
participant S as Server
participant DB as Database
U ->> C: Fill username
U ->> C: Fill password
C ->> U: Enable "Login" button
U ->> C: Click "Login" button
C ->>+ S: POST /login
S ->>+ DB: SELECT FROM users
Note over S,DB: See login.py for impl. details
DB -->>- S: results
S -->>- C: { authenticated: true }
C ->> U: redirect /home
Loading
Gantt Diagram
gantt
title A Gantt Diagram
dateFormat YYYY-MM-DD
section Section
A task :a1, 2014-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2014-01-12 , 12d
another task : 24d
Flowchart
graph LR A(Start) A --> B[Look for an item] B --> C{Did you find it?} C -->|Yes| D(Stop looking) C -->|No| E{Do you need it?} E -->|Yes| B E -->|No| DSequence diagrams
sequenceDiagram participant U as User participant C as Client participant S as Server participant DB as Database U ->> C: Fill username U ->> C: Fill password C ->> U: Enable "Login" button U ->> C: Click "Login" button C ->>+ S: POST /login S ->>+ DB: SELECT FROM users Note over S,DB: See login.py for impl. details DB -->>- S: results S -->>- C: { authenticated: true } C ->> U: redirect /homeGantt Diagram
gantt title A Gantt Diagram dateFormat YYYY-MM-DD section Section A task :a1, 2014-01-01, 30d Another task :after a1 , 20d section Another Task in sec :2014-01-12 , 12d another task : 24d