Mercurial > public > sg101
view news/forms.py @ 697:67f8d49a9377
Cleaned up the code a bit.
Separated the S3 stuff out into its own class.
This class maybe should be in core.
Still want to do some kind of context manager around the temporary file we are
creating to ensure it gets deleted.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 08 Sep 2013 21:02:58 -0500 |
parents | ee87ea74d46b |
children | ff645a692791 |
line wrap: on
line source
""" Forms for the news application. """ from django import forms from django.conf import settings from news.models import PendingStory from news.models import Category class AddNewsForm(forms.ModelForm): """Form for a user to submit a news story to the admins for review.""" title = forms.CharField(widget=forms.TextInput(attrs={'size': 52})) short_text = forms.CharField( label="Article text", widget=forms.Textarea( attrs={'rows': 60, 'cols': 80, 'style': 'height:500px'})) class Meta: model = PendingStory fields = ['title', 'category', 'short_text'] class Media: js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] class SendStoryForm(forms.Form): """Form for sending a news story via email to a friend.""" friend_name = forms.CharField(label="Friend's Name", max_length=64) friend_email = forms.EmailField(label="Friend's Email") def email(self): return self.cleaned_data['friend_email'] def name(self): return self.cleaned_data['friend_name']