mirror of
https://github.com/django/django.git
synced 2024-11-20 08:24:58 +00:00
2333c9662b
Thanks mark@ and Aramgutang for work on the patch.
9 lines
289 B
Python
9 lines
289 B
Python
from django.contrib.sites.models import Site
|
|
from django.db import models
|
|
|
|
|
|
class Article(models.Model):
|
|
sites = models.ManyToManyField(Site)
|
|
headline = models.CharField(max_length=100)
|
|
publications = models.ManyToManyField("model_package.Publication", null=True, blank=True,)
|