Started using a simple Post model. Added the new post form and view. Can now successfully insert posts into the DB.
Next:
- create the detail page that will show the post after saving
Figure out:
- when redirecting, how can I make the redirect URL decoupled from the urls.py of the parent app?
i.e. if the parent app has the following mapping:
'^blog/' -> pass to blog.urls.urlpatterns
the blog app has mappings for
'^post/new/' -> new post
'^post/([A-Za-z\-])/' -> post detail
inside the view, I want to redirect to "post/
I should subscribe to one of the Django mailing lists to ask stuff like this.
1 comment:
Hey Roy!
Good to see another pinoy interested in django. (You might want to join the google group of pinoy django users)
About your problem, you might want to take a look at this.
Tim
Post a Comment