Sorry, I'm having trouble understanding exactly what you want. Could you be more specific about your models and your calculations?
Let me take a stab at a guess, though. Let's say you have a model City with a population field and a model WaterUse with a total_water_use field. Then let's say you want to display Per Capita Water Use. You would need to write a view that pulls the Population field from the City model and the total_water_use field from the WaterUse model. Then in the view you would divide total_water_use by population and save it as a variable called per_capita_water_use. You would then pass this as a variable to your template to display it to the user. You could also show the original numbers used in the calculation by passing them to the template as well. At least, that's how I would do it (and I'm new to Django as well). Does this help? On Tue, Feb 23, 2010 at 1:17 PM, soFh <ahmed...@gmail.com> wrote: > Dear All, > i am just trying to learn django in various ways . And i need your > help as i am bit confused here . > > I have two "class"es in my models , there is no relation among these > both tables in database. > in my view i want that when user retrieve data from one table in my > html table one column should be compared with data in other table and > some calculation should be done like multiplication or division . > > i have done it on interactive console by importing all objects from > both tables and a nested for loop but i dont have idea how to imply it > on my html table showing data from first table. > > Will i have to do it in Views or in models ?in model how i tell it to > get values of other class ? > any help would be highly appreciated , > thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.