├── .gitignore ├── LICENSE ├── README.md ├── admin.png ├── config.py ├── config_hackathon.py ├── flask_app.py ├── hacker.png ├── manage_waitlist.py ├── options.png ├── requirements.txt ├── static ├── assets │ └── MinorParticipationWaiverHACKTCNJ2017.doc.docx ├── css │ └── scrolling-nav.css ├── favicon.png ├── img │ ├── HACKTCNJ-logo-color.eps │ ├── contact_bg.png │ ├── cover.png │ ├── faq_bg.png │ └── sticker.png ├── index.html └── js │ ├── admin.js │ └── scrolling-nav.js └── templates ├── email ├── check_in.txt ├── footer.txt ├── goodbye.txt ├── header.txt ├── promoted_from_waitlist.txt ├── reminder.txt ├── waitlist_report.txt └── welcome.txt └── web ├── admin.html ├── dashboard.html ├── footer.html ├── header.html └── register.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/README.md -------------------------------------------------------------------------------- /admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/admin.png -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/config.py -------------------------------------------------------------------------------- /config_hackathon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/config_hackathon.py -------------------------------------------------------------------------------- /flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/flask_app.py -------------------------------------------------------------------------------- /hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/hacker.png -------------------------------------------------------------------------------- /manage_waitlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/manage_waitlist.py -------------------------------------------------------------------------------- /options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/options.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/assets/MinorParticipationWaiverHACKTCNJ2017.doc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/assets/MinorParticipationWaiverHACKTCNJ2017.doc.docx -------------------------------------------------------------------------------- /static/css/scrolling-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/css/scrolling-nav.css -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/img/HACKTCNJ-logo-color.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/img/HACKTCNJ-logo-color.eps -------------------------------------------------------------------------------- /static/img/contact_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/img/contact_bg.png -------------------------------------------------------------------------------- /static/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/img/cover.png -------------------------------------------------------------------------------- /static/img/faq_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/img/faq_bg.png -------------------------------------------------------------------------------- /static/img/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/img/sticker.png -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/index.html -------------------------------------------------------------------------------- /static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/js/admin.js -------------------------------------------------------------------------------- /static/js/scrolling-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/static/js/scrolling-nav.js -------------------------------------------------------------------------------- /templates/email/check_in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/check_in.txt -------------------------------------------------------------------------------- /templates/email/footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/footer.txt -------------------------------------------------------------------------------- /templates/email/goodbye.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/goodbye.txt -------------------------------------------------------------------------------- /templates/email/header.txt: -------------------------------------------------------------------------------- 1 | Hey {{ first_name }}, 2 | -------------------------------------------------------------------------------- /templates/email/promoted_from_waitlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/promoted_from_waitlist.txt -------------------------------------------------------------------------------- /templates/email/reminder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/reminder.txt -------------------------------------------------------------------------------- /templates/email/waitlist_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/waitlist_report.txt -------------------------------------------------------------------------------- /templates/email/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/email/welcome.txt -------------------------------------------------------------------------------- /templates/web/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/web/admin.html -------------------------------------------------------------------------------- /templates/web/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/web/dashboard.html -------------------------------------------------------------------------------- /templates/web/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/web/footer.html -------------------------------------------------------------------------------- /templates/web/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/web/header.html -------------------------------------------------------------------------------- /templates/web/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbohinski/chronicel/HEAD/templates/web/register.html --------------------------------------------------------------------------------