mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-08-26 12:46:08 +00:00
forms: Implement form for uninstallation
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
1908bd5366
commit
97f45ee2bf
@ -14,12 +14,32 @@ from django.utils.translation import gettext_lazy as _
|
|||||||
import plinth
|
import plinth
|
||||||
|
|
||||||
|
|
||||||
|
def _get_repository_choices():
|
||||||
|
"""Return the list of available repositories."""
|
||||||
|
import plinth.modules.backups.repository as repository_module
|
||||||
|
choices = [(repository.uuid, repository.name)
|
||||||
|
for repository in repository_module.get_repositories()
|
||||||
|
if repository.is_usable()]
|
||||||
|
|
||||||
|
return choices
|
||||||
|
|
||||||
|
|
||||||
class AppEnableDisableForm(forms.Form):
|
class AppEnableDisableForm(forms.Form):
|
||||||
"""Form to enable / disable an app."""
|
"""Form to enable / disable an app."""
|
||||||
should_enable = forms.BooleanField(widget=forms.HiddenInput,
|
should_enable = forms.BooleanField(widget=forms.HiddenInput,
|
||||||
required=False)
|
required=False)
|
||||||
|
|
||||||
|
|
||||||
|
class UninstallForm(forms.Form):
|
||||||
|
"""Form to uninstall an app."""
|
||||||
|
should_backup = forms.BooleanField(
|
||||||
|
label=_('Backup app before uninstall'),
|
||||||
|
help_text=_('Restoring from the backup will restore app data.'),
|
||||||
|
required=False, initial=True)
|
||||||
|
repository = forms.ChoiceField(label=_('Repository to backup to'),
|
||||||
|
choices=_get_repository_choices)
|
||||||
|
|
||||||
|
|
||||||
class DomainSelectionForm(forms.Form):
|
class DomainSelectionForm(forms.Form):
|
||||||
"""Form for selecting a domain name to be used for
|
"""Form for selecting a domain name to be used for
|
||||||
distributed federated applications
|
distributed federated applications
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user