1
0
mirror of https://github.com/django/django.git synced 2025-01-16 05:12:23 +00:00

17 lines
384 B
Python
Raw Normal View History

from django.db import models
from django.urls import reverse
class TestModel(models.Model):
name = models.CharField(max_length=100)
def get_absolute_url(self):
return '/testmodel/%s/' % self.id
class I18nTestModel(models.Model):
name = models.CharField(max_length=100)
def get_absolute_url(self):
return reverse('i18n_testmodel', args=[self.id])