mirror of
https://github.com/django/django.git
synced 2025-01-14 04:18:17 +00:00
ad5afd6ed2
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12866 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
233 B
Python
9 lines
233 B
Python
from django.db import models
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
class Group(models.Model):
|
|
name = models.CharField(_('name'), max_length=100)
|
|
|
|
class Event(models.Model):
|
|
group = models.ForeignKey(Group)
|