minor update

This commit is contained in:
2025-08-25 14:26:58 +05:30
parent 17f309dcda
commit 7272f1726f
13 changed files with 163 additions and 33 deletions
+8
View File
@@ -37,3 +37,11 @@ class CommentForm(forms.ModelForm):
widgets = {
"content": forms.Textarea(attrs={"rows": 2, "placeholder": "Add a comment..."})
}
class IssueAssignForm(forms.ModelForm):
class Meta:
model = Issue
fields = ['department']
widgets = {
'department': forms.Select(attrs={'class': 'form-select form-select-sm'}),
}