fnp
/
prawokultury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
questions in sitemap
[prawokultury.git]
/
questions
/
forms.py
1
from django.forms import ModelForm
2
from .models import Question
3
4
class QuestionForm(ModelForm):
5
class Meta:
6
model = Question
7
fields = ['email', 'question']
8
# TODO: honeypot!