Titivillus/create_quest/forms.py

25 lines
406 B
Python
Raw Normal View History

#!/usr/bin/env python3
"""
Form(s) for the create_quest page.
"""
from django import forms
2018-09-25 11:58:07 -04:00
from quest.models import Quest, Post
class QuestForm(forms.ModelForm):
"""
The main create_quest form.
"""
class Meta:
model = Quest
fields = ('title',)
class PostForm(forms.ModelForm):
"""
The form for beginning the first post of the quest.
"""
class Meta:
model = Post
fields = ('post_text',)