IF you think education is expensive ...
| by jpic | phisolophy
… then try ignorance.
This message is intended to motivate developers to document their stuff.
IMPORTANT UPDATE: the approach proposed in this article is bad. Read this one instead.
You can start building a user interface using Django’s awesome CRUD in a matter of seconds, for example with just this server side configuration:
url(delete/(?P<pk>\d+)/$',
generic.DeleteView.as_view(model=YourModel),
name='yourapp_yourmodel_delete'),