mirror of
https://github.com/django/django.git
synced 2024-12-24 18:16:19 +00:00
Fixed #18713 -- Fixed custom comment app name in comments docs
Thanks Pratyush for the report.
This commit is contained in:
parent
09a719a4e6
commit
542c20b382
@ -51,9 +51,9 @@ To make this kind of customization, we'll need to do three things:
|
|||||||
custom :setting:`COMMENTS_APP`.
|
custom :setting:`COMMENTS_APP`.
|
||||||
|
|
||||||
So, carrying on the example above, we're dealing with a typical app structure in
|
So, carrying on the example above, we're dealing with a typical app structure in
|
||||||
the ``my_custom_app`` directory::
|
the ``my_comment_app`` directory::
|
||||||
|
|
||||||
my_custom_app/
|
my_comment_app/
|
||||||
__init__.py
|
__init__.py
|
||||||
models.py
|
models.py
|
||||||
forms.py
|
forms.py
|
||||||
@ -98,11 +98,11 @@ Django provides a couple of "helper" classes to make writing certain types of
|
|||||||
custom comment forms easier; see :mod:`django.contrib.comments.forms` for
|
custom comment forms easier; see :mod:`django.contrib.comments.forms` for
|
||||||
more.
|
more.
|
||||||
|
|
||||||
Finally, we'll define a couple of methods in ``my_custom_app/__init__.py`` to
|
Finally, we'll define a couple of methods in ``my_comment_app/__init__.py`` to
|
||||||
point Django at these classes we've created::
|
point Django at these classes we've created::
|
||||||
|
|
||||||
from my_comments_app.models import CommentWithTitle
|
from my_comment_app.models import CommentWithTitle
|
||||||
from my_comments_app.forms import CommentFormWithTitle
|
from my_comment_app.forms import CommentFormWithTitle
|
||||||
|
|
||||||
def get_model():
|
def get_model():
|
||||||
return CommentWithTitle
|
return CommentWithTitle
|
||||||
|
Loading…
Reference in New Issue
Block a user