Skip to content
Snippets Groups Projects
Commit 7a3caedb authored by Parbhat Puri's avatar Parbhat Puri
Browse files

Requested Funding value should be positive

parent 365b571e
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ class TitleBlock(ApplicationMustIncludeFieldBlock): ...@@ -35,7 +35,7 @@ class TitleBlock(ApplicationMustIncludeFieldBlock):
class ValueBlock(ApplicationSingleIncludeFieldBlock): class ValueBlock(ApplicationSingleIncludeFieldBlock):
name = 'value' name = 'value'
description = 'The value of the project' description = 'The value of the project'
widget = forms.NumberInput widget = forms.NumberInput(attrs={'min': 0})
class Meta: class Meta:
label = _('Requested amount') label = _('Requested amount')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment