feat: initial functional version with icons calculated based on archive results

This commit is contained in:
Cristian 2020-11-04 10:31:20 -05:00
parent 309a87e8fe
commit b3e0400bc0
3 changed files with 104 additions and 29 deletions

View file

@ -161,4 +161,8 @@ class ArchiveResult(models.Model):
output = models.CharField(max_length=500, default="")
start_ts = models.DateTimeField()
end_ts = models.DateTimeField()
extractor = models.CharField(choices=EXTRACTORS, blank=False, max_length=20)
status = models.CharField(max_length=10)
extractor = models.CharField(choices=EXTRACTORS, blank=False, max_length=20)
def __str__(self):
return self.extractor