Add: "active" field to Import URLs table

This commit is contained in:
Aroy-Art 2024-10-14 21:09:56 +02:00
parent 15a688d18e
commit bd6e8d2d7a
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -25,6 +25,8 @@ class ImportSourceURLs(models.Model):
source_type = models.CharField(max_length=1, choices=SOURCE_TYPES, default=None)
active = models.BooleanField(default=True)
class Meta:
verbose_name = _("Import Source URL")
verbose_name_plural = _("Import Source URLs")