| 3 | |
| 4 | |
| 5 | class Article(models.Model): |
| 6 | title = models.CharField(max_length=100) |
| 7 | pub_date = models.DateField() |
| 8 | pub_datetime = models.DateTimeField(default=timezone.now) |
| 9 | |
| 10 | categories = models.ManyToManyField("Category", related_name="articles") |
| 11 | |
| 12 | |
| 13 | class Comment(models.Model): |
no outgoing calls