> I have an app that tracks football stats, I'd like to use bar graphs
> similar to what's on Everyblock. This is their code:
>
> http://dpaste.com/80211/
>
> I was curious, how, if possible at all, in the template I could get
> the percentage for the height.
>
> So, for my first graph, so far I'd have these numbers:
>
> 390
> 314
> 402
> 429
>
> The 429 should be 100%, and then down from there 402 (94%), 390 (91%),
> 314 (73%), etc, etc.

You could create a simple template tag that calculates the percentages
for you. The usage would be something like:

{% graph_percentage 429 390 %}
{% graph_percentage 429 314 %}
{% graph_percentage 429 402 %}
{% graph_percentage 429 429 %}

http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#shortcut-for-simple-tags

There are other ways of doing this if you tell us how you intend to
generate those raw numbers.

-Rajesh D

--~--~---------~--~----~------------~-------~--~----~
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