An online game of betting on football matches.
This code is heavily under development. Don't expect anything to work yet.
It has been moved to an own branch.
- Basic Structure for a django app
- Install script that fetches the schedule from bundesliga.de and installs it into the database.
- Some first drafts for views
- Switched from bootstrap to jQuery Mobile
- Install django.
- For the install script you will also have to install requests.
- Setup a basic django project
django-admin.py startproject bundesliga
. - Add
AUTH_PROFILE_MODULE = 'tippspiel.Player
to your settings.py. - Add
'tippspiel',
to the installed apps. - Copy the tippspiel folder into your project's folder.
- Run
./manage.py syncdb
and make sure to setup your admin account. - Run
./manage.py shell
and in the shellfrom tippspiel import install
and finallyinstall.install()
. - You should be ready to go.
The project makes use of jQuery, jQuery Mobile and django. None of these are included in the project. Django has to be installed on the server, the jQuery files are loaded from the jQuery CDN.
The icons of the teams are property of their respective owners. They are not included in the project. However there is a script in tippspiel/static/img/emblems
called emblems.py
which allows you to download them from a website. You have to be aware, that you might not be allowed to use them.
All of the code in this project, if not stated otherwise, is licensed under the terms of the MIT License.
The MIT License (MIT)
Copyright (c) 2012 Kevin Dungs (https://github.com/kdungs)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.