Last active
April 22, 2016 16:24
-
-
Save creimers/f72e947db79ab60a58de7c854a9e13e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RelatedObjectDoesNotExist: Page has no publisher_draft. | |
from cms.models import Page | |
pages = Page.objects.all() | |
ids = [page.id for page in pages if page.get_absolute_url()=='/mitmachen/das-kannst-du-tun/'] | |
one = ids[0] | |
two = ids[1] | |
one.publisher_public = two | |
one.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment