mirror of
https://github.com/django/django.git
synced 2025-11-24 21:00:12 +00:00
Fixed #8630: finished the custom comment app API that was left out of 1.0. This means it's now possible to override any of the models, forms, or views used by the comment app; see the new custom comment app docs for details and an example. Thanks to Thejaswi Puthraya for the original patch, and to carljm for docs and tests.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7d4a954836
commit
63d85a684a
12 changed files with 333 additions and 29 deletions
|
|
@ -0,0 +1,4 @@
|
|||
from django import forms
|
||||
|
||||
class CustomCommentForm(forms.Form):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue