mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
15 lines
289 B
Python
15 lines
289 B
Python
from django.db import models
|
|
|
|
|
|
class Shelf(models.Model):
|
|
name = models.CharField(max_length=75)
|
|
|
|
class Meta:
|
|
verbose_name_plural = "shelves"
|
|
|
|
|
|
class Supply(models.Model):
|
|
name = models.CharField(max_length=75)
|
|
|
|
class Meta:
|
|
verbose_name_plural = "supplies"
|