mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-04-12 17:30:58 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
from django.db import models
|
|
|
|
|
|
class News(models.Model):
|
|
title = models.CharField(max_length=50)
|
|
visits = models.SmallIntegerField(blank=True, null=True)
|
|
|
|
|
|
class Other(models.Model):
|
|
name = models.CharField(max_length=50)
|