[UPDT] HORILLA DOCUMENTS: Updated documents app by adding verbose name for model and fields

This commit is contained in:
Horilla
2025-03-15 12:51:39 +05:30
parent 6f6c99d264
commit b01690af79
5 changed files with 104 additions and 127 deletions

View File

@@ -52,8 +52,6 @@ class DocumentRequestForm(ModelForm):
class DocumentForm(ModelForm):
"""form to create a new Document"""
verbose_name = "Document"
class Meta:
model = Document
fields = "__all__"
@@ -80,8 +78,6 @@ class DocumentForm(ModelForm):
class DocumentUpdateForm(ModelForm):
"""form to Update a Document"""
verbose_name = "Document"
class Meta:
model = Document
fields = "__all__"