mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 20:52:20 +01:00
Set a str() for QueueCommand
This commit is contained in:
@ -151,3 +151,6 @@ class QueueCommand(models.Model):
|
|||||||
)
|
)
|
||||||
command = models.TextField()
|
command = models.TextField()
|
||||||
executed = models.BooleanField(default=False)
|
executed = models.BooleanField(default=False)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.command
|
||||||
|
|||||||
Reference in New Issue
Block a user