mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
10 lines
199 B
10 lines
199 B
from django import forms
|
|
|
|
from .models import Project
|
|
|
|
|
|
class ProjectForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
model = Project
|
|
fields = ('name', 'description', 'project_type', 'users')
|