Skip to content

Commit 78a5090

Browse files
committed
fix slide typo causing code block to appear too early
1 parent 4b02a2f commit 78a5090

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/presentations/session08.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,14 +208,14 @@ fall into.
208208
* a longer description
209209
* a relationship to the Post model
210210

211-
.. code-block:: python
211+
.. code-block:: python
212212
213-
# in models.py
214-
class Category(models.Model):
215-
name = models.CharField(max_length=128)
216-
description = models.TextField(blank=True)
217-
posts = models.ManyToManyField(Post, blank=True, null=True,
218-
related_name='categories')
213+
# in models.py
214+
class Category(models.Model):
215+
name = models.CharField(max_length=128)
216+
description = models.TextField(blank=True)
217+
posts = models.ManyToManyField(Post, blank=True, null=True,
218+
related_name='categories')
219219
220220
221221
.. nextslide:: Strange Relationships

0 commit comments

Comments
 (0)