├── runtime.txt ├── Procfile ├── requirements.txt ├── templates └── index.html └── server.py /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.1 2 | 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python server.py 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.10.1 2 | Jinja2==2.7.3 3 | MarkupSafe==0.23 4 | Werkzeug==0.9.6 5 | itsdangerous==0.24 6 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |To vote, just Yo at your first choice team then your second choice team. Only your first 2 votes will count :)
45 | 46 |(buttons on their webpages)
48 |Alternatively, Yo their webpage URL to PRODUCTFORGE!
56 | 57 | 58 |This page refreshes automatically to display the current winner and runner-up.
62 || Team | 75 |primary votes | 76 |contingent votes | 77 |
|---|---|---|
| {{ teamvote.team_str }} | 83 |{{ teamvote.votes[1] | count }} | 84 |{{ teamvote.votes[2] | count }} | 85 |