├── .env ├── .gitignore ├── secrets-example.py ├── static ├── img │ ├── favicon.ico │ ├── glyphicons-halflings.png │ └── glyphicons-halflings-white.png ├── js │ ├── app.js │ ├── typeahead.js │ ├── bootstrap.min.js │ └── bootstrap.js └── css │ ├── sniper.css │ ├── bootstrap-responsive.min.css │ └── bootstrap-responsive.css ├── templates ├── faq.html ├── success.html ├── down.html ├── _formhelpers.html ├── home.html ├── layout.html └── _faq.html ├── requirements.txt ├── sniper.fcgi ├── soc.py ├── README.md ├── models.py ├── cron.py └── app.py /.env: -------------------------------------------------------------------------------- 1 | use_env sniper 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.log 3 | *.db 4 | secrets.py 5 | ENV 6 | -------------------------------------------------------------------------------- /secrets-example.py: -------------------------------------------------------------------------------- 1 | mail_username="" 2 | mail_password="" 3 | -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v/sniper/master/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v/sniper/master/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /templates/faq.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | {% block content %} 3 | {% include '_faq.html' %} 4 | {% endblock %} 5 | -------------------------------------------------------------------------------- /static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v/sniper/master/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /templates/success.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | {% block title %} Success | {% endblock %} 3 | {% block content %} 4 |
Sniper is down for the meantime, while course registration is closed. Check back around registration time for the Spring.
5 |
Contact sniper@rutgers.io for any feedback.
{{ error }}
9 | {% endfor %} 10 |Enter your details below, and I'll notify you when your class opens up. Sniper is currently watching courses for Spring 2018 on the Rutgers New Brunswick campus.
10 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/templates/_faq.html:
--------------------------------------------------------------------------------
1 |
2 |