1
0
Fork 0

Merge pull request #2638 from Giebisch/page-range

Page Range
This commit is contained in:
Hugh Rundle 2023-02-27 17:39:42 +11:00 committed by GitHub
commit 3a67727a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 84 additions and 2 deletions

View file

@ -329,6 +329,9 @@ class Quotation(BookStatus):
position = models.IntegerField(
validators=[MinValueValidator(0)], null=True, blank=True
)
endposition = models.IntegerField(
validators=[MinValueValidator(0)], null=True, blank=True
)
position_mode = models.CharField(
max_length=3,
choices=ProgressMode.choices,