blob: 4ffd8b77d5c6485b0ccb877fdec873c9bd8e0a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
from wtforms import TextField
from wtforms import IntegerField as _IntegerField
from wtforms import DecimalField as _DecimalField
from wtforms import DateField as _DateField
from wtforms.widgets import Input
class DateInput(Input):
"""
Creates `<input type=date>` widget
"""
input_type = "date"
class NumberInput(Input):
"""
Creates `<input type=number>` widget
"""
input_type="number"
class RangeInput(Input):
"""
Creates `<input type=range>` widget
"""
input_type="range"
class URLInput(Input):
"""
Creates `<input type=url>` widget
"""
input_type = "url"
class EmailInput(Input):
"""
Creates `<input type=email>` widget
"""
input_type = "email"
class SearchInput(Input):
"""
Creates `<input type=search>` widget
"""
input_type = "search"
class TelInput(Input):
"""
Creates `<input type=tel>` widget
"""
input_type = "tel"
class SearchField(TextField):
"""
**TextField** using **SearchInput** by default
"""
widget = SearchInput()
class DateField(_DateField):
"""
**DateField** using **DateInput** by default
"""
widget = DateInput()
class URLField(TextField):
"""
**TextField** using **URLInput** by default
"""
widget = URLInput()
class EmailField(TextField):
"""
**TextField** using **EmailInput** by default
"""
widget = EmailInput()
class TelField(TextField):
"""
**TextField** using **TelInput** by default
"""
widget = TelInput()
class IntegerField(_IntegerField):
"""
**IntegerField** using **NumberInput** by default
"""
widget = NumberInput()
class DecimalField(_DecimalField):
"""
**DecimalField** using **NumberInput** by default
"""
widget = NumberInput()
class IntegerRangeField(_IntegerField):
"""
**IntegerField** using **RangeInput** by default
"""
widget = RangeInput()
class DecimalRangeField(_DecimalField):
"""
**DecimalField** using **RangeInput** by default
"""
widget = RangeInput()
|