You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
450 B
13 lines
450 B
# -*- coding: utf-8 -*-
|
|
from django.db import models
|
|
from django.utils.translation import ugettext as _
|
|
|
|
class TargetAudience(models.Model):
|
|
class Meta:
|
|
verbose_name = _(u'Целевая аудитория')
|
|
verbose_name_plural = _(u'Целевая аудитория')
|
|
ordering = ['title']
|
|
title = models.CharField(_(u'Название'), max_length=200)
|
|
|
|
def __unicode__(self):
|
|
return unicode(self.title) |