[UPDT] HORILLA DOCUMENTS: Updated horilla documents app by adding htmx script to trigger the bulk rejection action

This commit is contained in:
Horilla
2025-05-16 19:20:14 +05:30
parent 941c9488b8
commit 2a688851e0
9 changed files with 245 additions and 262 deletions

View File

@@ -90,7 +90,9 @@ class Document(HorillaModel):
status = models.CharField(
choices=STATUS, max_length=10, default="requested", verbose_name=_("Status")
)
reject_reason = models.TextField(blank=True, null=True, max_length=255)
reject_reason = models.TextField(
blank=True, null=True, max_length=255, verbose_name=_("Reject Reason")
)
issue_date = models.DateField(null=True, blank=True, verbose_name=_("Issue Date"))
expiry_date = models.DateField(null=True, blank=True, verbose_name=_("Expiry Date"))
notify_before = models.IntegerField(