Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dump data from django Feincms

I'm using feincms in a django project and I want to use manage.py dumpdata but I get nothing:

python manage.py dumpdata feincms                 
[]
like image 335
Victor Avatar asked Aug 01 '10 03:08

Victor


1 Answers

If you want to dump the page data you need to run dumpdata on the page app. The page models live there, not in feincms:

 python manage.py dumpdata page
like image 61
Matthias Kestenholz Avatar answered Sep 18 '22 08:09

Matthias Kestenholz