minor update
This commit is contained in:
@@ -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'}),
|
||||
}
|
||||
Reference in New Issue
Block a user