django-modeltranslation/modeltranslation/tests/test_app/models.py

17 lines
330 B
Python
Raw Permalink Normal View History

2013-02-09 19:31:59 +00:00
from django.db import models
class News(models.Model):
2014-06-08 21:22:52 +00:00
class Meta:
app_label = 'test_app'
2021-09-18 07:55:39 +00:00
2013-02-09 19:31:59 +00:00
title = models.CharField(max_length=50)
visits = models.SmallIntegerField(blank=True, null=True)
class Other(models.Model):
2014-06-08 21:22:52 +00:00
class Meta:
app_label = 'test_app'
2021-09-18 07:55:39 +00:00
2013-02-09 19:31:59 +00:00
name = models.CharField(max_length=50)