Get the URL, preferably by using an absolute_url method of the model. Then do something like this:
from urllib import urlencode attrs = { 'latitude': address.latitude, 'longitude': address.longitude, } map_link = "%s?%s" % (urlencode(attrs),) Shawn On Mar 4, 2010, at 5:23 PM, dogfuel wrote: > My model for a location has attributes for latitude and longitude - > when the admin change form is used for editing, I'd like to include a > url assembled from these attributes i.e.: > "http://www.myserver.com/map/map.py?lat=<latitude here>&lon=<longitude > here>" > > The (non-django) page map.py already exists, I just want to build the > link and shoe it as an URL. > > How is the best way to do this? I'd like to avoid adding a field to > the database. > > Thanks for humoring a newbee! > > -- > 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. > -- 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.