django-driver27 0.24.2.5

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangodriver27 0.24.2.5

driver27
Racing competition manager in Django where you can manage different
motor competitions with its own punctuation rules, races, drivers, teams
which, at the same time, can be part of multiple competitions.


Modify your settings.py
INSTALLED_APPS = [
'bootstrap3',
...
'django_countries',
'tabbed_admin',
'rest_framework', # since v0.19.3
'django-filter', # since v0.22x
'driver27'
]


TABBED_ADMIN_USE_JQUERY_UI = False # Incompatible with 1.11.


DR27_CONFIG
Now, you can add more punctuation and record configs adding DR27_CONFIG in your settings.py.
Follow this example
DR27_CONFIG = {
'RECORDS': {
'PODIUM-GATES': {'label': _('At the gates of podium'), 'filter': {'finish__exact': 4}},
...
},
'PUNCTUATION': {
'DR27-POINTS': {'type': 'full', 'finish': [10, 5, 3, 1], 'fastest_lap': 0, 'label': 'DR27 points'},
...
}
}
If you want to allow translate, add this import
from django.utils.translation import ugettext as _


Versions

0.14c (Fernando Alonso 14)
0.16c (Race to Championship ‘16)
0.19 (Ayrton Senna’s Toleman’s car number ‘84 - Debut)
0.22 (HAM McLaren 2008/BUT Brawn 2009)
0.27-VIL (Gilles Villeneuve 27)



0.24.2

Adding cache
Fixes and improvement of code



0.24.1

Driver/Team profile
Improvement record/streak views



0.24

Reformat Seat: Contender/Team => Driver/Team. Contender disappears. Seasons are based on seat periods.
Global ranks



0.23

Refactor code
API improvement
Streak and Rank models



0.22

Calculate team standing with a different punctuation system (like driver ranking)
All ranks in season are available in competition.
Refactor.



0.19.4

Race points will be saved in BD
Improve Points Calculator. Much faster than before
Improve copy season (seats, teams and races)



0.19.3

Add Django Rest Framework
Incompatible with Django 1.7
Add django-swapfield in qualifying/finish field



0.19.2

Allow different Team ranks (total, races with at least one and races with races with double coincidence)



0.19.1

Ranks by season



0.19

Spanish translation
Link to copy season copying teams and races to add_view. Seats is potentially bugged by team dependency (both would be create at the same time).
Fix bugs founded in previous versions.



0.16

What would happen if the 10-point scoring system was used? Would the
champion be the same? This version will give you the answer.
Olympic rank: Alternative rank with the gold first method. The driver
with superior race results (based on descending order, from number of
wins to numbers of second-places down) will gain precedence.
Road to championship: When the season goes down, we can calculate who
would be the champion predicting the results in the last races.
Olympic rank is counted in case of points tie. Rosberg or Hamilton?



0.14

Initial models
Basic relation restriction with exceptions and tests
Basic templates to frontend views
Basic demo to test the app



models

Driver
Team
Circuit
Grand Prix
Competition
Season
Race
Result
Seat (Driver/Team relation)
fixtures folder contains fixture of each model to demo project.



Demo (virtualenv recommended)
$ git clone https://github.com/SRJ9/django-driver27
$ cd django-driver27 # or name of destiny folder
$ pip install Django>=1.10 #if is not installed
$ pip install -r dr27demo/requirements-demo.txt
$ python dr27demo/manage.py runserver
$ # login /admin: admin:pass


Todo

[x] Add records by season (driver, team)
[x] Add records by driver/team career
[x] Add records by competition
[x] Add drivers profile with records, last_wins, teams…
[x] Add easy clone to Season
[x] Translate
[x] 1980’s punctuation. Only 11 best results.
[ ] Old punctuation. Split season races, and get only 4 of each half.



History
Driver 27 is a reference to car number of Gilles Villeneuve, F1 Driver
died in 1982. Gilles is considered one of best driver despite he never
won the World Championship, something that Jacques Villeneuve, his son,
did in 1998.
In 1980’s decade, F1 teams kept their numbers unless they were
champions. This made Ferrari, the most legendary team of the F1, take
that number for many years (1981-1995), making the number an icon of
this sport.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.