mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
16 lines
330 B
Python
16 lines
330 B
Python
from django.db import models
|
|
|
|
|
|
class News(models.Model):
|
|
class Meta:
|
|
app_label = "test_app"
|
|
|
|
title = models.CharField(max_length=50)
|
|
visits = models.SmallIntegerField(blank=True, null=True)
|
|
|
|
|
|
class Other(models.Model):
|
|
class Meta:
|
|
app_label = "test_app"
|
|
|
|
name = models.CharField(max_length=50)
|