mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 17:26:51 +00:00
14 lines
266 B
Python
14 lines
266 B
Python
from django import forms
|
|
|
|
|
|
class WebuiForm(forms.Form):
|
|
|
|
webui_props = forms.CharField(
|
|
label='WEBUI Props',
|
|
widget=forms.Textarea(
|
|
attrs={
|
|
'class': 'form-control',
|
|
}
|
|
),
|
|
required=False
|
|
) |