Added filter functionality and combined both base.html
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ class NomenclatureBaseModel(models.Model):
|
||||
name = models.CharField(max_length=100, unique=True)
|
||||
short_name = models.CharField(max_length=5, null=True, blank=True)
|
||||
description = models.TextField(blank=True, null=True)
|
||||
|
||||
active = models.BooleanField(default=True)
|
||||
class Meta:
|
||||
abstract = True
|
||||
ordering = ['name']
|
||||
|
||||
Reference in New Issue
Block a user