mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
feat: initial functional version with icons calculated based on archive results
This commit is contained in:
parent
309a87e8fe
commit
b3e0400bc0
3 changed files with 104 additions and 29 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue