mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 10:53:15 +08:00
18 lines
478 B
Python
18 lines
478 B
Python
# @Time : 2018/10/17 23:13
|
|
# @Author : RobbieHan
|
|
# @File : forms.py
|
|
|
|
from django import forms
|
|
from .models import Structure
|
|
|
|
|
|
class LoginForm(forms.Form):
|
|
username = forms.CharField(required=True, error_messages={"requeired": "请填写用户名"})
|
|
password = forms.CharField(required=True, error_messages={"requeired": "请填写密码"})
|
|
|
|
|
|
class StructureForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Structure
|
|
fields = ['type', 'name', 'parent']
|