mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
350 B
10 lines
350 B
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _l
|
|
|
|
from cotisations.models import Banque as Bank
|
|
|
|
|
|
class ChequeForm(forms.Form):
|
|
"""A simple form to get the bank a the cheque number."""
|
|
bank = forms.ModelChoiceField(Bank.objects.all(), label=_l("Bank"))
|
|
number = forms.CharField(label=_l("Cheque number"))
|
|
|