i have a system i created a while back in php that allows fans to come
to the site after a soccer match and rate each player on a scale of
1-10 based on their performance. it displays the player's average for
every, the entire season, etc.

the way that it's structured now is using a mysql database with a few
tables:

TABLE player
player_id
first_name
last_name

TABLE match
match_id
opponent
match_date

TABLE vote
vote_id
value
player
match

is it reasonable to do something similar in django? in mysql/php i'm
just running a mysql query that is = AVG(value) as rating_average
WHERE player = player_id AND match = match_id

if this is something i could do, could someone steer me in the right
direction of a nice tut/info on using math in django?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to