mirror of
https://github.com/Hopiu/django.git
synced 2026-05-25 15:23:51 +00:00
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)
|