17 lines
378 B
Python
17 lines
378 B
Python
from django import forms
|
|
|
|
|
|
class ApiKeyCreateForm(forms.Form):
|
|
name = forms.CharField(
|
|
label="名称",
|
|
max_length=80,
|
|
required=False,
|
|
widget=forms.TextInput(
|
|
attrs={
|
|
"autocomplete": "off",
|
|
"class": "form-control",
|
|
"placeholder": "例如:桌面端",
|
|
}
|
|
),
|
|
)
|