mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
23 lines
807 B
Python
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)
|