diff --git a/tutorials/02-models.rst b/tutorials/02-models.rst index fcae827..e7546cc 100644 --- a/tutorials/02-models.rst +++ b/tutorials/02-models.rst @@ -267,6 +267,8 @@ Let's add a ``__str__`` method to our model that returns the entry title. Our ` If you start the development server and take a look at the admin interface (http://localhost:8000/admin/) again, you will see the entry titles in the list of entries. +.. image:: _static/02-04_entry_w_name.png + Now if we run our test again we should see that our single test passes: .. code-block:: bash diff --git a/tutorials/_static/02-03_entry_added.png b/tutorials/_static/02-03_entry_added.png index 86a0216..a0db073 100644 Binary files a/tutorials/_static/02-03_entry_added.png and b/tutorials/_static/02-03_entry_added.png differ diff --git a/tutorials/_static/02-04_entry_w_name.png b/tutorials/_static/02-04_entry_w_name.png new file mode 100644 index 0000000..86a0216 Binary files /dev/null and b/tutorials/_static/02-04_entry_w_name.png differ