Django for Designers/CRUD: Difference between revisions

no edit summary
imported>Paulproteus
(Restore this part from a previous snapshot)
 
imported>Paulproteus
No edit summary
Line 4:
 
This section deals with "CRUD" functionality, which are key to all web applications. CRUD stands for Create, Read, Update, and Delete. We already have Reading bookmarks covered; now we need to handle Creating bookmarks!
 
So that we're all on the same page, even if you didn't get all the way through the previous part, you should do these steps right now:
 
<source lang="bash">
# in django-for-designers/myproject
$ git branch my-branch-4 origin/pre-part-4
$ git checkout my-branch-4
</source>
 
=== Django forms ===
Anonymous user