Skip to content

Commit 9a61b2a

Browse files
committed
tweak my fix
1 parent 0b0f73e commit 9a61b2a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

en/django_start_project/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,16 @@ Let's ignore the other files for now - we won't change them. The only thing to r
5050

5151
Let's make some changes in `mysite/settings.py`. Open the file using the code editor you installed earlier.
5252

53-
It would be nice to have the correct time on our website. Go to http://en.wikipedia.org/wiki/List_of_tz_database_time_zones and copy your relevant time zone (TZ). (eg. `Europe/Berlin` )
53+
It would be nice to have the correct time on our website. Go to the [wikipedia timezones list](http://en.wikipedia.org/wiki/List_of_tz_database_time_zones) and copy your relevant time zone (TZ). (eg. `Europe/Berlin` )
5454

55-
You should find lines that contains `TIME_ZONE` and modify it to choose your own timezone (here's a full [list of timezones](http://en.wikipedia.org/wiki/List_of_tz_database_time_zones))
55+
In settings.py, find the line that contains `TIME_ZONE` and modify it to choose your own timezone:
5656

5757
```python
5858
TIME_ZONE = 'Europe/Berlin'
5959
```
6060

61+
Modifying "Europe/Berlin" as appropriate
62+
6163

6264
## Setup a database
6365

0 commit comments

Comments
 (0)