Hi all,

What is de best ways for export data?

for example i have 3 apps, but apps 1 and 2 have relation with apps 1
and i want download data in only one file all data

APP1
class Model1(...):
    field1 = ....
    field2 = ...

----------------------------------

APP2
class Model2():
      fk = (Model1)
      field3 = ...
      field4 = ....

-------------------------------------
APP3
class Model3():
    fk = (Model1)
    field5 = ...
    field6 = ....

and now I would like to download my data so ( exclude all id )

field1 | field2  | field3 | field4  | field5  | field6

I do not care if excel or csv! for download

know any app that does this?

any idea?

Cheers

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAM-7rO3kYckxS71ZZ7n%2BW1fwKmsiZKoiW_j3S2pQzmt6tedC4w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to