mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 14:56:47 +00:00
15 lines
297 B
Python
15 lines
297 B
Python
from django import forms
|
|
|
|
|
|
class ConnectorMethodForm(forms.Form):
|
|
connector_method_body = forms.CharField(
|
|
label='Connector Method Body',
|
|
widget=forms.Textarea(
|
|
attrs={
|
|
'class': 'form-control',
|
|
}
|
|
),
|
|
required=False
|
|
)
|
|
|