You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: django_orm/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The effect should be like this:
19
19
(InteractiveConsole)
20
20
>>>
21
21
22
-
You're know in Django's interactive console. It's just like Python prompt but with some additional Django magic :) You can use all Python commands here too, of course.
22
+
You're now in Django's interactive console. It's just like Python prompt but with some additional Django magic :) You can use all Python commands here too, of course.
23
23
24
24
### All objects
25
25
@@ -64,7 +64,7 @@ Cool! Let's get an instance of the user now:
64
64
65
65
As you can see, we know `get` a `User` with a `username` that equals to 'ola'. Neat! Of course, you have to adjust it to your username.
66
66
67
-
Now we can finally create our first po that:
67
+
Now we can finally create our first post:
68
68
69
69
>>> Post.objects.create(author = user, title = 'Sample title', text = 'Test')
0 commit comments