5 lines
85 B
Python
5 lines
85 B
Python
from django import forms
|
|
|
|
class Pump(forms.Form):
|
|
flow = forms.NumberInput()
|
|
|