Mercurial > public > sg101
view gpp/news/forms.py @ 318:c550933ff5b6
Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 Feb 2011 21:46:52 +0000 |
parents | 88b2b9cb8c1f |
children | bdcce55f137e |
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(widget=forms.Textarea(attrs={'rows': 20, 'cols': 80})) long_text = forms.CharField(required=False, widget=forms.Textarea(attrs={'rows': 20, 'cols': 80})) class Meta: model = PendingStory fields = ('title', 'category', 'short_text', 'long_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']