Skip to content

Commit bb54b39

Browse files
committed
run django admin chapter through hemingway
1 parent 137f8fa commit bb54b39

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

en/django_admin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ OK, time to look at our Post model. Remember to run `python manage.py runserver`
1717

1818
![Login page](images/login_page2.png)
1919

20-
In order to log in you need to create a *superuser* - a user which has control over everything on the site. Go back to you command-line and type `python manage.py createsuperuser`, press enter and type your username (lowercase, no spaces), email address and password when you're asked for them. Don't worry that you can't see the password you're typing in - that's how it's supposed to be. Just type it in and press 'Enter' to continue. The output should look like this (where username and email should be your own ones):
20+
To log in, you need to create a *superuser* - a user which has control over everything on the site. Go back to the command-line and type `python manage.py createsuperuser`, and press enter. When prompted, type your username (lowercase, no spaces), email address, and password. Don't worry that you can't see the password you're typing in - that's how it's supposed to be. Just type it in and press 'Enter' to continue. The output should look like this (where username and email should be your own ones):
2121

2222
(myvenv) ~/djangogirls$ python manage.py createsuperuser
2323
Username: admin
@@ -26,11 +26,11 @@ In order to log in you need to create a *superuser* - a user which has control o
2626
Password (again):
2727
Superuser created successfully.
2828

29-
Return to your browser and log in with the superuser's credentials you chose, you should see the Django admin dashboard.
29+
Return to your browser. Log in with the superuser's credentials you chose; you should see the Django admin dashboard.
3030

3131
![Django admin](images/django_admin3.png)
3232

33-
Go to Posts and experiment a little bit with it. Add five or six blog posts. Don't worry about the content - you can simply copy-paste some text from this tutorial as your posts' content to save time :).
33+
Go to Posts and experiment a little bit with it. Add five or six blog posts. Don't worry about the content - you can simply copy-paste some text from this tutorial to save time :).
3434

3535
Make sure that at least two or three posts (but not all) have the publish date set. It will be helpful later.
3636

0 commit comments

Comments
 (0)