diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2017-03-20 14:00:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-20 14:00:51 +0100 |
| commit | 3dac51208d17a517c1f525df6f2ed6572127fcc0 (patch) | |
| tree | 21e9dcf4c82ddefad8728440649b97a351fe0fe7 /budget/forms.py | |
| parent | c04ace2823755c11f43b50b91b6fdd5175a3c673 (diff) | |
| parent | ceab95b444462093068ba14213841786a5d0ec84 (diff) | |
| download | ihatemoney-mirror-3dac51208d17a517c1f525df6f2ed6572127fcc0.zip ihatemoney-mirror-3dac51208d17a517c1f525df6f2ed6572127fcc0.tar.gz ihatemoney-mirror-3dac51208d17a517c1f525df6f2ed6572127fcc0.tar.bz2 | |
Merge pull request #181 from 0livd/remove_archive
Remove unused archive feature
Diffstat (limited to 'budget/forms.py')
| -rw-r--r-- | budget/forms.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/budget/forms.py b/budget/forms.py index 7cdb36d..6967983 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -172,12 +172,6 @@ class InviteForm(FlaskForm): email=email)) -class CreateArchiveForm(FlaskForm): - name = TextField(_("Name for this archive (optional)"), validators=[]) - start_date = DateField(_("Start date"), validators=[Required()]) - end_date = DateField(_("End date"), validators=[Required()], default=datetime.now) - - class ExportForm(FlaskForm): export_type = SelectField(_("What do you want to download ?"), validators=[Required()], |
