Skip to content

Latest commit

 

History

History
50 lines (50 loc) · 1.39 KB

schema.md

File metadata and controls

50 lines (50 loc) · 1.39 KB

. ├── app │ ├── init.py │ ├── dependencies.py │ ├── main.py │ ├── database │ ├── init.py │ ├── database.py │ ├── models.py │ ├── schemas.py │ ├── internal │ ├── init.py │ ├── admin.py │ ├── agenda_events.py │ ├── email.py │ ├── media │ ├── example.png │ ├── fake_user.png │ ├── profile.png │ ├── routers │ ├── init.py │ ├── agenda.py │ ├── categories.py │ ├── email.py │ ├── event.py │ ├── profile.py │ ├── static │ ├── event │ ├── eventedit.css │ ├── eventview.css │ ├── agenda_style.css │ ├── popover.js │ ├── style.css │ ├── templates │ ├── base.html │ ├── home.html │ ├── profile.html ├── LICENSE ├── requirements.txt ├── schema.md └── tests ├── init.py ├── conftest.py ├── test_agenda_internal.py ├── test_agenda_route.py ├── test_app.py ├── test_categories.py ├── test_email.py ├── test_event.py └── test_profile.py