Coverage for seedboxsync/front/forms/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.16.1, created at 2026-09-26 17:14 +0000

1# 

2# Copyright (C) 2015-2026 Guillaume Kulakowski <guillaume@kulakowski.fr> 

3# 

4# For the full copyright and license information, please view the LICENSE 

5# file that was distributed with this source code. 

6# 

7"""Form package with all forms.""" 

8 

9from .csrf import EmptyCSRFForm 

10from .login import LoginForm 

11from .settings.apikey import ApiKeyForm 

12from .settings.authentication import SettingsAuthenticationForm 

13from .settings.nas import SettingsNasForm 

14from .settings.ping import SettingsPingForm 

15from .settings.seedbox import SettingsSeedboxForm 

16from .settings.seedboxsync import SettingsSeedboxSyncForm 

17from .user import UserCreateForm, UserEditForm 

18 

19__all__ = [ 

20 "ApiKeyForm", 

21 "EmptyCSRFForm", 

22 "LoginForm", 

23 "SettingsAuthenticationForm", 

24 "SettingsNasForm", 

25 "SettingsPingForm", 

26 "SettingsSeedboxForm", 

27 "SettingsSeedboxSyncForm", 

28 "UserCreateForm", 

29 "UserEditForm", 

30]