This repository has been archived on 2019-11-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
tofu/issues/forms.py

10 lines
176 B
Python
Raw Permalink Normal View History

2019-06-03 00:14:40 +02:00
from django.forms import ModelForm
from .models import Issue
class IssueForm(ModelForm):
class Meta:
model = Issue
fields = ['project', 'title', 'text']