mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
Cleanup Dependency/Resolves form code
This commit is contained in:
parent
0b38f1d5bd
commit
665e4008e7
@ -589,7 +589,7 @@ class TicketDependencyForm(forms.ModelForm):
|
|||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = TicketDependency
|
model = TicketDependency
|
||||||
exclude = ('ticket',)
|
fields = ('depends_on',)
|
||||||
|
|
||||||
def __init__(self, ticket, *args, **kwargs):
|
def __init__(self, ticket, *args, **kwargs):
|
||||||
super(TicketDependencyForm,self).__init__(*args, **kwargs)
|
super(TicketDependencyForm,self).__init__(*args, **kwargs)
|
||||||
@ -602,7 +602,6 @@ class TicketResolvesForm(forms.ModelForm):
|
|||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = TicketDependency
|
model = TicketDependency
|
||||||
#exclude = ('depends_on',)
|
|
||||||
fields = ('ticket',)
|
fields = ('ticket',)
|
||||||
|
|
||||||
def __init__(self, ticket, *args, **kwargs):
|
def __init__(self, ticket, *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user