File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,12 @@ define a model:
232
232
def __str__(self):
233
233
# Include logic for displaying your model as a string here
234
234
235
+ .. tip::
236
+
237
+ To learn more about the metadata options you can specify
238
+ in the ``Meta`` class, see `Model Meta options <{+django-docs+}/ref/models/options/>`__
239
+ in the {+framework+} documentation.
240
+
235
241
To use your models, you must add them to your project's
236
242
``settings.py`` file. Edit the ``INSTALLED_APPS`` value to include
237
243
the name of the module that stores your ``models.py`` file, as shown
@@ -431,7 +437,7 @@ and modifies the ``Movie`` model to include the ``EmbeddedModelField``:
431
437
:end-before: end-embedded-field
432
438
:language: python
433
439
:copyable:
434
- :emphasize-lines: 17
440
+ :emphasize-lines: 18
435
441
436
442
.. tip::
437
443
You can’t perform that action at this time.
0 commit comments