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

Improved the docs #28

Merged
merged 1 commit into from Jan 17, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -32,7 +32,8 @@ you can do the following:
city = models.CharField(max_length=50)
street = models.CharField(max_length=100)

This example asumes that the Country Model has a "continent" field and that the Area model has "country" field.
This example asumes that the Country Model has a continent = ForeignKey(Continent) field
and that the Area model has country = ForeignKey(Country) field.

- The chained field is the field on the same model the field should be chained too.
- The chained model field is the field of the chained model that corresponds to the model linked too by the chained field.
Expand Down