Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #9962 - Added a testing tutorial. #548

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Are you new to Django or to programming? This is the place to start!
:doc:`Part 1 <intro/tutorial01>` |
:doc:`Part 2 <intro/tutorial02>` |
:doc:`Part 3 <intro/tutorial03>` |
:doc:`Part 4 <intro/tutorial04>`
:doc:`Part 4 <intro/tutorial04>` |
:doc:`Part 5 <intro/tutorial05>`

* **Advanced Tutorials:**
:doc:`How to write reusable apps <intro/reusable-apps>` |
Expand Down
1 change: 1 addition & 0 deletions docs/intro/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ place: read this material to quickly get up and running.
tutorial02
tutorial03
tutorial04
tutorial05
reusable-apps
whatsnext
contributing
Expand Down
4 changes: 2 additions & 2 deletions docs/intro/reusable-apps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
Advanced tutorial: How to write reusable apps
=============================================

This advanced tutorial begins where :doc:`Tutorial 4 </intro/tutorial04>` left
This advanced tutorial begins where :doc:`Tutorial 5 </intro/tutorial05>` left
off. We'll be turning our Web-poll into a standalone Python package you can
reuse in new projects and share with other people.

If you haven't recently completed Tutorials 1–4, we encourage you to review
If you haven't recently completed Tutorials 1–5, we encourage you to review
these so that your example project matches the one described below.

Reusability matters
Expand Down
12 changes: 2 additions & 10 deletions docs/intro/tutorial04.txt
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,5 @@ Run the server, and use your new polling app based on generic views.
For full details on generic views, see the :doc:`generic views documentation
</topics/class-based-views/index>`.

What's next?
============

The beginner tutorial ends here for the time being. In the meantime, you might
want to check out some pointers on :doc:`where to go from here
</intro/whatsnext>`.

If you are familiar with Python packaging and interested in learning how to
turn polls into a "reusable app", check out :doc:`Advanced tutorial: How to
write reusable apps</intro/reusable-apps>`.
When you're comfortable with forms and generic views, read :doc:`part 5 of this
tutorial</intro/tutorial05>` to learn about testing our polls app.
Loading