removed obsolete abbjobs model
(same content is now server by old webs json-api)
This commit is contained in:
@@ -193,21 +193,6 @@ class Rotation(models.Model):
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
class ABBJob(models.Model):
|
||||
sw_id = models.IntegerField(default=-1)
|
||||
title = models.CharField(max_length=255)
|
||||
QR = models.CharField(max_length=255, default="")
|
||||
created = models.DateTimeField(default=timezone.now)
|
||||
|
||||
def get_dict(self):
|
||||
return {
|
||||
"title": self.title,
|
||||
"QR": self.QR,
|
||||
}
|
||||
|
||||
def __str__(self):
|
||||
return self.title
|
||||
|
||||
class ImageUploadForm(forms.Form):
|
||||
'''
|
||||
Form used to handle imageuploads to
|
||||
|
||||
Reference in New Issue
Block a user