Hello, Has anyone played with google-transmeta yet? It's great but I can't seem to understand how to pass the model building part.
I'm wondering what's the best way to pass variables to templates. For instance: def view(request, language, slug): activate(language) page = Page.objects.get(slug=slug) return render_to_response("view.html", {'page' : page}) Will not work. If I send 'es' as the language, it will still give me the default English version (from the default language in settings, I suppose). I've tried sending the language variable to the template and it's working, but it's not replacing 'slug' with 'slug_es' as it should (or at least as I think it should). Documentation is not very clear on how to get past the model work and implementing in actual views and templates. Any help will be much appreciated. Thanks, Frederico --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---