{{ job.output }}
No output yet.
This job hasn't generated any output. Maybe you should consider printing some of its progress using the
management command print
method?
For example:
class Command(base_command.TempJobBaseCommand):
def handle(self, **options):
handle(self)
def handle(cmd):
cmd.print("Starting command.")
for i in range(0, 40):
cmd.print(i)
cmd.print("Command ended.")
{% endif %}
{% endif %}