Mercurial > public > sg101
view gpp/weblinks/forms.py @ 220:71fd8454688b
For #51, added weblinks to search. Decided against using the search index to store prerendered results. My fear is this could get too unweildy once we add forums.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Jun 2010 20:06:15 +0000 |
parents | b4305e18d3af |
children | 7e8d2dda99e3 |
line wrap: on
line source
""" Forms for the weblinks application. """ from django import forms from weblinks.models import PendingLink, Link class SearchForm(forms.Form): '''Weblinks search form''' text = forms.CharField(max_length = 30) def query(self): return self.cleaned_data['text'] class AddLinkForm(forms.ModelForm): title = forms.CharField(widget = forms.TextInput(attrs = {'size': 52})) url = forms.CharField(widget = forms.TextInput(attrs = {'size': 52})) def clean_url(self): new_url = self.cleaned_data['url'] try: Link.objects.get(url__iexact = new_url) except Link.DoesNotExist: return new_url raise forms.ValidationError('That link already exists in our database.') class Meta: model = PendingLink exclude = ('user', 'date_added')