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
[]
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
[]
I don't know FeinCMS, but looking at the GitHub repo it seems that the feincms
application only contains abstract models. If you want to dump the data, you'll need to find where the actual concrete models are, and dump that app.
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 maange.py dumpdata page