mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 07:15:07 +01:00
Made the created field editable
This commit is contained in:
parent
c199b0498d
commit
840626e571
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ class Document(models.Model):
|
||||||
)
|
)
|
||||||
tags = models.ManyToManyField(
|
tags = models.ManyToManyField(
|
||||||
Tag, related_name="documents", blank=True)
|
Tag, related_name="documents", blank=True)
|
||||||
created = models.DateTimeField(default=timezone.now, editable=False)
|
created = models.DateTimeField(default=timezone.now)
|
||||||
modified = models.DateTimeField(auto_now=True, editable=False)
|
modified = models.DateTimeField(auto_now=True, editable=False)
|
||||||
|
|
||||||
class Meta(object):
|
class Meta(object):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue