]> git.ipfire.org Git - people/ms/westferry.git/blob - src/westferry/ui/forms.py
Refactor forms
[people/ms/westferry.git] / src / westferry / ui / forms.py
1 #!/usr/bin/python3
2 ###############################################################################
3 # #
4 # Westferry - The IPFire web user interface #
5 # Copyright (C) 2015 IPFire development team #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 from ..backend import forms
23 from . import base
24
25 class FormModule(base.BaseUIModule):
26 def render(self, form):
27 return self.render_string("modules/forms/index.html",
28 f=form, forms=forms)
29
30
31 class FormElementsModule(base.BaseUIModule):
32 def render(self, elements):
33 return self.render_string("modules/forms/elements.html", elements=elements)
34
35
36 class FormFieldsetModule(base.BaseUIModule):
37 def render(self, fieldset):
38 return self.render_string("modules/forms/fieldset.html", fs=fieldset)
39
40
41 class TextInputModule(base.BaseUIModule):
42 def render(self, input):
43 assert isinstance(input, forms.TextInput)
44
45 return self.render_string("modules/forms/inputs/text.html", input=input)
46
47
48 class MultilineTextInputModule(base.BaseUIModule):
49 def render(self, input):
50 assert isinstance(input, forms.MultilineTextInput)
51
52 return self.render_string("modules/forms/inputs/textarea.html", input=input)
53
54
55 class YesNoInputModule(base.BaseUIModule):
56 def render(self, input):
57 assert isinstance(input, forms.YesNoInput)
58
59 return self.render_string("modules/forms/inputs/checkbox.html", input=input)