Show import status in table
This commit is contained in:
parent
24e5ea3295
commit
59fe9e4d3b
3 changed files with 37 additions and 11 deletions
|
@ -25,7 +25,6 @@ class Migration(migrations.Migration):
|
|||
("complete", "Complete"),
|
||||
("stopped", "Stopped"),
|
||||
],
|
||||
default="pending",
|
||||
max_length=50,
|
||||
null=True,
|
||||
),
|
||||
|
|
18
bookwyrm/migrations/0161_alter_importjob_status.py
Normal file
18
bookwyrm/migrations/0161_alter_importjob_status.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.15 on 2022-11-05 20:40
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('bookwyrm', '0160_auto_20221105_2030'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='importjob',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('pending', 'Pending'), ('active', 'Active'), ('complete', 'Complete'), ('stopped', 'Stopped')], default='pending', max_length=50, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue