diff options
Diffstat (limited to 'ishtar_common/forms.py')
| -rw-r--r-- | ishtar_common/forms.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 5faa232fb..9c81fa04b 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -75,6 +75,10 @@ class FinalForm(forms.Form):      final = True      form_label = _(u"Confirm") +class FinalDeleteForm(FinalForm): +    confirm_msg = " " +    confirm_end_msg = _(u"Are you sure you want to delete?") +  class FormSet(BaseFormSet):      def check_duplicate(self, key_names, error_msg=""):          """Check for duplicate items in the formset""" | 
