Sunil Mohan Adapa 9368504da5
*.py: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:38:55 +02:00

23 lines
807 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Plinth form for configuring Coquelicot.
"""
from django import forms
from django.utils.translation import ugettext_lazy as _
from plinth.forms import AppForm
class CoquelicotForm(AppForm): # pylint: disable=W0232
"""Coquelicot configuration form."""
upload_password = forms.CharField(
label=_('Upload Password'),
help_text=_('Set a new upload password for Coquelicot. '
'Leave this field blank to keep the current password.'),
required=False, widget=forms.PasswordInput)
max_file_size = forms.IntegerField(
label=_("Maximum File Size (in MiB)"), help_text=_(
'Set the maximum size of the files that can be uploaded to '
'Coquelicot.'), required=False, min_value=0)