Hello, I am using the django-tagging application which allows to tag any instance of any model within your project. What I want to to is prepopoulate a form with data using :
form = forms.BlaForm(initial = {'description' = a.description, 'tags' = a.tags} ) My problem is that a.tags returns a list with tag objects.But what I need is a String of concatenated String like 'cool, funky, fresh, exiting' Has anybody an idea how to do this without iterating over the list of tagobjects and concatenating them by hand? Thanks, Toni --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---