mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 19:26:53 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
from django import forms
|
|
|
|
|
|
class MethodRoutingForm(forms.Form):
|
|
method_routing_body = forms.CharField(
|
|
label='Method Routing Body',
|
|
widget=forms.Textarea(
|
|
attrs={
|
|
'class': 'form-control',
|
|
}
|
|
),
|
|
required=False
|
|
) |