|
@ -117,7 +117,7 @@ class CheckForm(FdbForm): |
|
|
class LiteratureForm(CheckForm): |
|
|
class LiteratureForm(CheckForm): |
|
|
def __init__(self, *args, **kwargs): |
|
|
def __init__(self, *args, **kwargs): |
|
|
super().__init__(*args, **kwargs) |
|
|
super().__init__(*args, **kwargs) |
|
|
self.fields['selfbuy_give_data'].required = False |
|
|
|
|
|
|
|
|
self.fields['selfbuy_give_data'].required = True |
|
|
class Meta: |
|
|
class Meta: |
|
|
model = Literature |
|
|
model = Literature |
|
|
fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_data', 'selfbuy_give_data'] |
|
|
fields = ['cost', 'info', 'source', 'notes', 'selfbuy', 'selfbuy_data', 'selfbuy_give_data'] |
|
|