Ticket #15910: models.py

File models.py, 223 bytes (added by Arthur de Jong <arthur@…>, 13 years ago)

example models.py file

Line 
1from django.db import models
2
3
4class TopModel(models.Model):
5
6 name = models.CharField(max_length=100)
7
8
9class InlineModel(models.Model):
10
11 top = models.ForeignKey(TopModel)
12 name = models.CharField(max_length=100)
Back to Top