mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-25 11:07:35 +00:00
11 lines
249 B
Python
Executable File
11 lines
249 B
Python
Executable File
from django.db import models
|
|
from spa.models._BaseModel import _BaseModel
|
|
|
|
class Label(_BaseModel):
|
|
class Meta:
|
|
app_label = 'spa'
|
|
|
|
name = models.CharField(max_length=100)
|
|
|
|
def __unicode__(self):
|
|
return self.name |