Django for ISchoolers: Difference between revisions

imported>Aldeka
imported>Aldeka
Line 1,043:
 
== Oh, CRUD! (plus, ModelForms) ==
 
So, we've got a basic web app, with some templates and dynamic data. But right now the only way we have to edit that data -- add, edit, or delete questions or answers -- is from the command line. Our web app's users can't do it at all! Let's fix that.
 
A common acronym for these sorts of basic data operations is CRUD -- Create, Read, Update, and Delete. We've already got 'Read' covered. Time to do the rest!
 
= Bonus points =
Anonymous user