summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/complex_app/models/bar.py
blob: 92f1b9869484bd581a80a4fcff539eacc61e693e (plain)
1
2
3
4
5
6
7
8
9
from django.db import models

from ..admin import foo


class Bar(models.Model):
    name = models.CharField(max_length=5)
    class Meta:
        app_label = 'complex_app'