ask-a-philosopher/ask/forms.py

9 lines
171 B
Python

from django import forms
from .models import Question
class QuestionForm(forms.ModelForm):
class Meta:
model = Question
fields = ['name','question']